X7ROOT File Manager
Current Path:
/opt/alt/ruby25/lib64/ruby/2.5.0/rubygems/resolver
opt
/
alt
/
ruby25
/
lib64
/
ruby
/
2.5.0
/
rubygems
/
resolver
/
ðŸ“
..
📄
activation_request.rb
(3.74 KB)
📄
api_set.rb
(2.46 KB)
📄
api_specification.rb
(1.95 KB)
📄
best_set.rb
(1.61 KB)
📄
composed_set.rb
(1.18 KB)
📄
conflict.rb
(3.36 KB)
📄
current_set.rb
(282 B)
📄
dependency_request.rb
(2.28 KB)
📄
git_set.rb
(2.88 KB)
📄
git_specification.rb
(1.27 KB)
📄
index_set.rb
(1.42 KB)
📄
index_specification.rb
(1.48 KB)
📄
installed_specification.rb
(1.21 KB)
📄
installer_set.rb
(5.02 KB)
📄
local_specification.rb
(807 B)
📄
lock_set.rb
(1.67 KB)
📄
lock_specification.rb
(1.83 KB)
ðŸ“
molinillo
📄
molinillo.rb
(82 B)
📄
requirement_list.rb
(1.33 KB)
📄
set.rb
(1.24 KB)
📄
source_set.rb
(898 B)
📄
spec_specification.rb
(1.06 KB)
📄
specification.rb
(2.31 KB)
📄
stats.rb
(950 B)
📄
vendor_set.rb
(1.91 KB)
📄
vendor_specification.rb
(580 B)
Editing: requirement_list.rb
# frozen_string_literal: true ## # The RequirementList is used to hold the requirements being considered # while resolving a set of gems. # # The RequirementList acts like a queue where the oldest items are removed # first. class Gem::Resolver::RequirementList include Enumerable ## # Creates a new RequirementList. def initialize @exact = [] @list = [] end def initialize_copy other # :nodoc: @exact = @exact.dup @list = @list.dup end ## # Adds Resolver::DependencyRequest +req+ to this requirements list. def add(req) if req.requirement.exact? @exact.push req else @list.push req end req end ## # Enumerates requirements in the list def each # :nodoc: return enum_for __method__ unless block_given? @exact.each do |requirement| yield requirement end @list.each do |requirement| yield requirement end end ## # How many elements are in the list def size @exact.size + @list.size end ## # Is the list empty? def empty? @exact.empty? && @list.empty? end ## # Remove the oldest DependencyRequest from the list. def remove return @exact.shift unless @exact.empty? @list.shift end ## # Returns the oldest five entries from the list. def next5 x = @exact[0,5] x + @list[0,5 - x.size] end end
Upload File
Create Folder