Class: Bundler::EndpointSpecification
- Inherits:
-
Gem::Specification
- Object
- Gem::Specification
- Bundler::EndpointSpecification
- Includes:
- MatchPlatform
- Defined in:
- lib/bundler/endpoint_specification.rb
Overview
used for Creating Specifications from the Gemcutter Endpoint
Constant Summary
Constants included from GemHelpers
GemHelpers::GENERICS, GemHelpers::GENERIC_CACHE
Constants inherited from Gem::Specification
Gem::Specification::LATEST_RUBY_WITHOUT_PATCH_VERSIONS
Instance Attribute Summary collapse
-
#checksum ⇒ Object
readonly
Returns the value of attribute checksum.
-
#dependencies ⇒ Object
Returns the value of attribute dependencies.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#platform ⇒ Object
readonly
Returns the value of attribute platform.
-
#remote ⇒ Object
Returns the value of attribute remote.
-
#source ⇒ Object
Returns the value of attribute source.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Attributes inherited from Gem::Specification
#location, #relative_loaded_from
Instance Method Summary collapse
- #__swap__(spec) ⇒ Object
- #_local_specification ⇒ Object
-
#bindir ⇒ Object
needed for bundle clean.
-
#executables ⇒ Object
needed for binstubs.
-
#extensions ⇒ Object
needed for “with native extensions” during install.
- #fetch_platform ⇒ Object
-
#initialize(name, version, platform, spec_fetcher, dependencies, metadata = nil) ⇒ EndpointSpecification
constructor
A new instance of EndpointSpecification.
-
#load_paths ⇒ Object
needed for inline.
-
#post_install_message ⇒ Object
needed for post_install_messages during install.
-
#require_paths ⇒ Object
needed for standalone, load required_paths from local gemspec after the gem is installed.
- #required_ruby_version ⇒ Object
- #required_rubygems_version ⇒ Object
Methods included from MatchPlatform
#match_platform, platforms_match?
Methods included from GemHelpers
generic, generic_local_platform, local_platform, platform_specificity_match, same_deps, same_specificity, select_best_platform_match
Methods inherited from Gem::Specification
#deleted_gem?, #extension_dir, #full_gem_path, #gem_dir, #git_version, #groups, #loaded_from, #nondevelopment_dependencies, #required_ruby_version=, #rg_extension_dir, #rg_full_gem_path, #rg_loaded_from, #rg_required_ruby_version=, #to_gemfile
Methods included from Gem::Specification::YamlBackfiller
Constructor Details
#initialize(name, version, platform, spec_fetcher, dependencies, metadata = nil) ⇒ EndpointSpecification
Returns a new instance of EndpointSpecification.
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/bundler/endpoint_specification.rb', line 11 def initialize(name, version, platform, spec_fetcher, dependencies, = nil) super() @name = name @version = Gem::Version.create version @platform = platform @spec_fetcher = spec_fetcher @dependencies = dependencies.map {|dep, reqs| build_dependency(dep, reqs) } @loaded_from = nil @remote_specification = nil () end |
Instance Attribute Details
#checksum ⇒ Object (readonly)
Returns the value of attribute checksum.
8 9 10 |
# File 'lib/bundler/endpoint_specification.rb', line 8 def checksum @checksum end |
#dependencies ⇒ Object
Returns the value of attribute dependencies.
9 10 11 |
# File 'lib/bundler/endpoint_specification.rb', line 9 def dependencies @dependencies end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
8 9 10 |
# File 'lib/bundler/endpoint_specification.rb', line 8 def name @name end |
#platform ⇒ Object (readonly)
Returns the value of attribute platform.
8 9 10 |
# File 'lib/bundler/endpoint_specification.rb', line 8 def platform @platform end |
#remote ⇒ Object
Returns the value of attribute remote.
9 10 11 |
# File 'lib/bundler/endpoint_specification.rb', line 9 def remote @remote end |
#source ⇒ Object
Returns the value of attribute source.
9 10 11 |
# File 'lib/bundler/endpoint_specification.rb', line 9 def source @source end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
8 9 10 |
# File 'lib/bundler/endpoint_specification.rb', line 8 def version @version end |
Instance Method Details
#__swap__(spec) ⇒ Object
110 111 112 113 |
# File 'lib/bundler/endpoint_specification.rb', line 110 def __swap__(spec) SharedHelpers.ensure_same_dependencies(self, dependencies, spec.dependencies) @remote_specification = spec end |
#_local_specification ⇒ Object
103 104 105 106 107 108 |
# File 'lib/bundler/endpoint_specification.rb', line 103 def _local_specification return unless @loaded_from && File.exist?(local_specification_path) eval(File.read(local_specification_path)).tap do |spec| spec.loaded_from = @loaded_from end end |
#bindir ⇒ Object
needed for bundle clean
71 72 73 74 75 76 77 78 79 |
# File 'lib/bundler/endpoint_specification.rb', line 71 def bindir if @remote_specification @remote_specification.bindir elsif _local_specification _local_specification.bindir else super end end |
#executables ⇒ Object
needed for binstubs
60 61 62 63 64 65 66 67 68 |
# File 'lib/bundler/endpoint_specification.rb', line 60 def executables if @remote_specification @remote_specification.executables elsif _local_specification _local_specification.executables else super end end |
#extensions ⇒ Object
needed for “with native extensions” during install
93 94 95 96 97 98 99 100 101 |
# File 'lib/bundler/endpoint_specification.rb', line 93 def extensions if @remote_specification @remote_specification.extensions elsif _local_specification _local_specification.extensions else super end end |
#fetch_platform ⇒ Object
33 34 35 |
# File 'lib/bundler/endpoint_specification.rb', line 33 def fetch_platform @platform end |
#load_paths ⇒ Object
needed for inline
50 51 52 53 54 55 56 57 |
# File 'lib/bundler/endpoint_specification.rb', line 50 def load_paths # remote specs aren't installed, and can't have load_paths if _local_specification _local_specification.load_paths else super end end |
#post_install_message ⇒ Object
needed for post_install_messages during install
82 83 84 85 86 87 88 89 90 |
# File 'lib/bundler/endpoint_specification.rb', line 82 def if @remote_specification @remote_specification. elsif _local_specification _local_specification. else super end end |
#require_paths ⇒ Object
needed for standalone, load required_paths from local gemspec after the gem is installed
39 40 41 42 43 44 45 46 47 |
# File 'lib/bundler/endpoint_specification.rb', line 39 def require_paths if @remote_specification @remote_specification.require_paths elsif _local_specification _local_specification.require_paths else super end end |
#required_ruby_version ⇒ Object
25 26 27 |
# File 'lib/bundler/endpoint_specification.rb', line 25 def required_ruby_version @required_ruby_version ||= _remote_specification.required_ruby_version end |
#required_rubygems_version ⇒ Object
29 30 31 |
# File 'lib/bundler/endpoint_specification.rb', line 29 def required_rubygems_version @required_rubygems_version ||= _remote_specification.required_rubygems_version end |