The LockSpecification comes from a lockfile (Gem::RequestSet::Lockfile).
A LockSpecification's dependency information is pre-filled from the lockfile.
Methods
Class Public methods
new(set, name, version, source, platform)
Link
Source: show
# File lib/rubygems/resolver/lock_specification.rb, line 9 def initialize set, name, version, source, platform super() @name = name @platform = platform @set = set @source = source @version = version @dependencies = [] @spec = nil end
Instance Public methods
install(options)
Link
This is a null install as a locked specification is considered installed.
options are ignored.
Source: show
# File lib/rubygems/resolver/lock_specification.rb, line 26 def install options destination = options[:install_dir] || Gem.dir if File.exist? File.join(destination, 'specifications', spec.spec_name) then yield nil return end super end