Class: Gem::Source::Local
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::Gem::Source
|
|
Instance Chain:
self,
::Gem::Source ,
Comparable
|
|
Inherits: |
Gem::Source
|
Defined in: | lib/rubygems/source/local.rb |
Overview
The local source finds gems in the current directory for fulfilling dependencies.
Constant Summary
::Gem::Source
- Inherited
Class Method Summary
- .new ⇒ Local constructor Internal use only
::Gem::Source
- Inherited
.new | Creates a new |
Instance Attribute Summary
::Gem::Source
- Inherited
#update_cache? | Returns true when it is possible and safe to update the cache directory. |
#uri | The URI this source will fetch gems from. |
Instance Method Summary
-
#<=>(other)
Local
sorts before::Gem::Source
and afterInstalled
- #download(spec, cache_dir = nil) Internal use only
- #fetch_spec(name) Internal use only
- #find_gem(gem_name, version = Gem::Requirement.default, prerelease = false) Internal use only
- #inspect Internal use only
- #load_specs(type) Internal use only
- #pretty_print(q) Internal use only
::Gem::Source
- Inherited
#<=> | Sources are ordered by installation preference. |
#cache_dir | Returns the local directory to write #uri to. |
#download | Downloads |
#fetch_spec | Fetches a specification for the given |
#load_specs | Loads |
#==, | |
#dependency_resolver_set | Returns a Set that can fetch specifications from this source. |
#eql? | Alias for #==. |
#hash, #pretty_print |
Constructor Details
.new ⇒ Local
This method is for internal use only.
# File 'lib/rubygems/source/local.rb', line 8
def initialize # :nodoc: @specs = nil @api_uri = nil @uri = nil @load_specs_names = {} end
Instance Method Details
#<=>(other)
Local
sorts before ::Gem::Source
and after Installed
#download(spec, cache_dir = nil)
This method is for internal use only.
# File 'lib/rubygems/source/local.rb', line 114
def download(spec, cache_dir = nil) # :nodoc: load_specs :complete @specs.each do |name, data| return data[0] if data[1].spec == spec end raise Gem::Exception, "Unable to find file for '#{spec.full_name}'" end
#fetch_spec(name)
This method is for internal use only.
[ GitHub ]
# File 'lib/rubygems/source/local.rb', line 104
def fetch_spec(name) # :nodoc: load_specs :complete if data = @specs[name] data.last.spec else raise Gem::Exception, "Unable to find spec for #{name.inspect}" end end
#find_gem(gem_name, version = Gem::Requirement.default, prerelease = false)
This method is for internal use only.
[ GitHub ]
# File 'lib/rubygems/source/local.rb', line 81
def find_gem(gem_name, version = Gem::Requirement.default, # :nodoc: prerelease = false) load_specs :complete found = [] @specs.each do |n, data| if n.name == gem_name s = data[1].spec if version.satisfied_by?(s.version) if prerelease found << s elsif !s.version.prerelease? || version.prerelease? found << s end end end end found.max_by { |s| s.version } end
#inspect
This method is for internal use only.
[ GitHub ]
# File 'lib/rubygems/source/local.rb', line 32
def inspect # :nodoc: keys = @specs ? @specs.keys.sort : 'NOT LOADED' "#<%s specs: %p>" % [self.class, keys] end
#load_specs(type)
This method is for internal use only.
[ GitHub ]
# File 'lib/rubygems/source/local.rb', line 37
def load_specs(type) # :nodoc: @load_specs_names[type] ||= begin names = [] @specs = {} Dir["*.gem"].each do |file| begin pkg = Gem::Package.new(file) rescue SystemCallError, Gem::Package::FormatError # ignore else tup = pkg.spec.name_tuple @specs[tup] = [File. (file), pkg] case type when :released unless pkg.spec.version.prerelease? names << pkg.spec.name_tuple end when :prerelease if pkg.spec.version.prerelease? names << pkg.spec.name_tuple end when :latest tup = pkg.spec.name_tuple cur = names.find { |x| x.name == tup.name } if !cur names << tup elsif cur.version < tup.version names.delete cur names << tup end else names << pkg.spec.name_tuple end end end names end end
#pretty_print(q)
This method is for internal use only.
[ GitHub ]
# File 'lib/rubygems/source/local.rb', line 124
def pretty_print(q) # :nodoc: q.group 2, '[Local gems:', ']' do q.breakable q.seplist @specs.keys do |v| q.text v.full_name end end end