Class: Bundler::EndpointSpecification
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
Gem::Specification
|
Defined in: | lib/bundler/endpoint_specification.rb |
Overview
used for Creating Specifications from the Gemcutter Endpoint
Constant Summary
GemHelpers
- Included
::Gem::Specification
- Inherited
Class Method Summary
Instance Attribute Summary
- #checksum readonly
- #dependencies rw
- #name readonly
- #platform readonly
- #remote rw
- #source rw
- #version readonly
FetchMetadata
- Included
#matches_current_ruby? | A fallback is included because the original version of the specification API didn’t include that field, so some marshalled specs in the index have it set to |
#matches_current_rubygems? |
::Gem::Specification
- Inherited
#deleted_gem?, #location, #relative_loaded_from, #remote, #required_ruby_version=, #source, #source= |
GemHelpers
- Included
MatchMetadata
- Included
Instance Method Summary
- #__swap__(spec)
- #_local_specification
-
#bindir
needed for bundle clean.
-
#executables
needed for binstubs.
-
#extensions
needed for “with native extensions” during install.
- #fetch_platform
-
#load_paths
needed for inline.
-
#metadata
needed for
bundle fund
. -
#post_install_message
needed for post_install_messages during install.
-
#require_paths
needed for standalone, load required_paths from local gemspec after the gem is installed.
- #_remote_specification private
- #build_dependency(name, requirements) private
- #local_specification_path private
- #parse_metadata(data) private
::Gem::Specification
- Inherited
MatchPlatform
- Included
GemHelpers
- Included
Constructor Details
.new(name, version, platform, spec_fetcher, dependencies, metadata = nil) ⇒ EndpointSpecification
# 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 = Gem::Platform.new(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 (readonly)
[ GitHub ]#dependencies (rw)
[ GitHub ]#name (readonly)
[ GitHub ]#platform (readonly)
[ GitHub ]#remote (rw)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_accessor :source, :remote, :dependencies
#source (rw)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_accessor :source, :remote, :dependencies
#version (readonly)
[ GitHub ]Instance Method Details
#__swap__(spec)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 113
def __swap__(spec) SharedHelpers.ensure_same_dependencies(self, dependencies, spec.dependencies) @remote_specification = spec end
#_local_specification
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 106
def _local_specification return unless @loaded_from && File.exist?(local_specification_path) eval(File.read(local_specification_path), nil, local_specification_path).tap do |spec| spec.loaded_from = @loaded_from end end
#_remote_specification (private)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 120
def _remote_specification @_remote_specification ||= @spec_fetcher.fetch_spec([@name, @version, @platform]) end
#bindir
needed for bundle clean
# File 'lib/bundler/endpoint_specification.rb', line 63
def bindir if @remote_specification @remote_specification.bindir elsif _local_specification _local_specification.bindir else super end end
#build_dependency(name, requirements) (private)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 154
def build_dependency(name, requirements) Gem::Dependency.new(name, requirements) end
#executables
needed for binstubs
# File 'lib/bundler/endpoint_specification.rb', line 52
def executables if @remote_specification @remote_specification.executables elsif _local_specification _local_specification.executables else super end end
#extensions
needed for “with native extensions” during install
# File 'lib/bundler/endpoint_specification.rb', line 85
def extensions if @remote_specification @remote_specification.extensions elsif _local_specification _local_specification.extensions else super end end
#fetch_platform
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 25
def fetch_platform @platform end
#load_paths
needed for inline
# File 'lib/bundler/endpoint_specification.rb', line 42
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
#local_specification_path (private)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 124
def local_specification_path "#{base_dir}/specifications/#{full_name}.gemspec" end
#metadata
needed for bundle fund
# File 'lib/bundler/endpoint_specification.rb', line 96
def if @remote_specification @remote_specification. elsif _local_specification _local_specification. else super end end
#parse_metadata(data) (private)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 128
def (data) unless data @required_ruby_version = nil @required_rubygems_version = nil return end data.each do |k, v| next unless v case k.to_s when "checksum" begin @checksum = Checksum.from_api(v.last, @spec_fetcher.uri) rescue ArgumentError => e raise ArgumentError, "Invalid checksum for #{full_name}: #{e.}" end when "rubygems" @required_rubygems_version = Gem::Requirement.new(v) when "ruby" @required_ruby_version = Gem::Requirement.new(v) end end rescue StandardError => e raise GemspecError, "There was an error parsing the metadata for the gem #{name} (#{version}): #{e.class}\n#{e}\nThe metadata was #{data.inspect}" end
#post_install_message
needed for post_install_messages during install
# File 'lib/bundler/endpoint_specification.rb', line 74
def if @remote_specification @remote_specification. elsif _local_specification _local_specification. else super end end
#require_paths
needed for standalone, load required_paths from local gemspec after the gem is installed
# File 'lib/bundler/endpoint_specification.rb', line 31
def require_paths if @remote_specification @remote_specification.require_paths elsif _local_specification _local_specification.require_paths else super end end