Class: Gem::Source::SpecificFile
- Inherits:
-
Gem::Source
- Object
- Gem::Source
- Gem::Source::SpecificFile
- Defined in:
- lib/rubygems/source/specific_file.rb
Overview
A source representing a single .gem file. This is used for installation of local gems.
Constant Summary
Constants inherited from Gem::Source
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
The path to the gem for this specific file.
-
#spec ⇒ Object
readonly
The Gem::Specification extracted from this .gem.
Attributes inherited from Gem::Source
Instance Method Summary collapse
-
#<=>(other) ⇒ Object
Orders this source against
other
. -
#download(spec, dir = nil) ⇒ Object
:nodoc:.
-
#fetch_spec(name) ⇒ Object
:nodoc:.
-
#initialize(file) ⇒ SpecificFile
constructor
Creates a new SpecificFile for the gem in
file
. -
#load_specs(*a) ⇒ Object
:nodoc:.
-
#pretty_print(q) ⇒ Object
:nodoc:.
Methods inherited from Gem::Source
#==, #cache_dir, #dependency_resolver_set, #hash, #typo_squatting?, #update_cache?
Methods included from Text
#clean_text, #format_text, #levenshtein_distance, #min3, #truncate_text
Constructor Details
#initialize(file) ⇒ SpecificFile
Creates a new SpecificFile for the gem in file
15 16 17 18 19 20 21 22 |
# File 'lib/rubygems/source/specific_file.rb', line 15 def initialize(file) @uri = nil @path = ::File.(file) @package = Gem::Package.new @path @spec = @package.spec @name = @spec.name_tuple end |
Instance Attribute Details
#path ⇒ Object (readonly)
The path to the gem for this specific file.
10 11 12 |
# File 'lib/rubygems/source/specific_file.rb', line 10 def path @path end |
#spec ⇒ Object (readonly)
The Gem::Specification extracted from this .gem.
27 28 29 |
# File 'lib/rubygems/source/specific_file.rb', line 27 def spec @spec end |
Instance Method Details
#<=>(other) ⇒ Object
Orders this source against other
.
If other
is a SpecificFile from a different gem name nil
is returned.
If other
is a SpecificFile from the same gem name the versions are compared using Gem::Version#<=>
Otherwise Gem::Source#<=> is used.
61 62 63 64 65 66 67 68 69 70 |
# File 'lib/rubygems/source/specific_file.rb', line 61 def <=>(other) case other when Gem::Source::SpecificFile then return nil if @spec.name != other.spec.name @spec.version <=> other.spec.version else super end end |
#download(spec, dir = nil) ⇒ Object
:nodoc:
39 40 41 42 |
# File 'lib/rubygems/source/specific_file.rb', line 39 def download(spec, dir = nil) # :nodoc: return @path if spec == @spec raise Gem::Exception, "Unable to download '#{spec.full_name}'" end |
#fetch_spec(name) ⇒ Object
:nodoc:
33 34 35 36 37 |
# File 'lib/rubygems/source/specific_file.rb', line 33 def fetch_spec(name) # :nodoc: return @spec if name == @name raise Gem::Exception, "Unable to find '#{name}'" @spec end |
#load_specs(*a) ⇒ Object
:nodoc:
29 30 31 |
# File 'lib/rubygems/source/specific_file.rb', line 29 def load_specs(*a) # :nodoc: [@name] end |
#pretty_print(q) ⇒ Object
:nodoc:
44 45 46 47 48 49 |
# File 'lib/rubygems/source/specific_file.rb', line 44 def pretty_print(q) # :nodoc: q.group 2, '[SpecificFile:', ']' do q.breakable q.text @path end end |