X7ROOT File Manager
Current Path:
/opt/alt/ruby27/share/rubygems/rubygems/resolver
opt
/
alt
/
ruby27
/
share
/
rubygems
/
rubygems
/
resolver
/
ðŸ“
..
📄
activation_request.rb
(2.85 KB)
📄
api_set.rb
(2.46 KB)
📄
api_specification.rb
(2.19 KB)
📄
best_set.rb
(1.61 KB)
📄
composed_set.rb
(1.19 KB)
📄
conflict.rb
(3.25 KB)
📄
current_set.rb
(282 B)
📄
dependency_request.rb
(2.29 KB)
📄
git_set.rb
(2.88 KB)
📄
git_specification.rb
(1.27 KB)
📄
index_set.rb
(1.41 KB)
📄
index_specification.rb
(1.48 KB)
📄
installed_specification.rb
(1.22 KB)
📄
installer_set.rb
(5.02 KB)
📄
local_specification.rb
(807 B)
📄
lock_set.rb
(1.67 KB)
📄
lock_specification.rb
(1.82 KB)
ðŸ“
molinillo
📄
molinillo.rb
(82 B)
📄
requirement_list.rb
(1.34 KB)
📄
set.rb
(1.24 KB)
📄
source_set.rb
(902 B)
📄
spec_specification.rb
(1.06 KB)
📄
specification.rb
(2.34 KB)
📄
stats.rb
(959 B)
📄
vendor_set.rb
(1.91 KB)
📄
vendor_specification.rb
(581 B)
Editing: lock_specification.rb
# frozen_string_literal: true ## # The LockSpecification comes from a lockfile (Gem::RequestSet::Lockfile). # # A LockSpecification's dependency information is pre-filled from the # lockfile. class Gem::Resolver::LockSpecification < Gem::Resolver::Specification attr_reader :sources def initialize(set, name, version, sources, platform) super() @name = name @platform = platform @set = set @source = sources.first @sources = sources @version = version @dependencies = [] @spec = nil end ## # This is a null install as a locked specification is considered installed. # +options+ are ignored. def install(options = {}) destination = options[:install_dir] || Gem.dir if File.exist? File.join(destination, 'specifications', spec.spec_name) yield nil return end super end ## # Adds +dependency+ from the lockfile to this specification def add_dependency(dependency) # :nodoc: @dependencies << dependency end def pretty_print(q) # :nodoc: q.group 2, '[LockSpecification', ']' do q.breakable q.text "name: #{@name}" q.breakable q.text "version: #{@version}" unless @platform == Gem::Platform::RUBY q.breakable q.text "platform: #{@platform}" end unless @dependencies.empty? q.breakable q.text 'dependencies:' q.breakable q.pp @dependencies end end end ## # A specification constructed from the lockfile is returned def spec @spec ||= Gem::Specification.find do |spec| spec.name == @name and spec.version == @version end @spec ||= Gem::Specification.new do |s| s.name = @name s.version = @version s.platform = @platform s.dependencies.concat @dependencies end end end
Upload File
Create Folder