Class: Bundler::EndpointSpecification
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::Gem::Specification
|
|
Instance Chain:
|
|
Inherits: |
Gem::Specification
|
Defined in: | lib/bundler/endpoint_specification.rb |
Overview
used for Creating Specifications from the Gemcutter Endpoint
Constant Summary
-
ILLFORMED_MESSAGE =
# File 'lib/bundler/endpoint_specification.rb', line 6'Ill-formed requirement ["#<YAML::Syck::DefaultKey'.freeze
GemHelpers
- Included
Class Method Summary
Instance Attribute Summary
- #checksum readonly
- #dependencies rw
- #name readonly
- #platform readonly
- #remote rw
- #required_ruby_version readonly
- #required_rubygems_version readonly
- #source rw
- #version readonly
::Gem::Specification
- Inherited
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.
-
#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.
- #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, dependencies, metadata = nil) ⇒ EndpointSpecification
# File 'lib/bundler/endpoint_specification.rb', line 12
def initialize(name, version, platform, dependencies, = nil) super() @name = name @version = Gem::Version.create version @platform = platform @dependencies = dependencies.map {|dep, reqs| build_dependency(dep, reqs) } @loaded_from = nil @remote_specification = nil ( ) end
Instance Attribute Details
#checksum (readonly)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
#dependencies (rw)
[ GitHub ]#name (readonly)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
#platform (readonly)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
#remote (rw)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 10
attr_accessor :source, :remote, :dependencies
#required_ruby_version (readonly)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
#required_rubygems_version (readonly)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
#source (rw)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 10
attr_accessor :source, :remote, :dependencies
#version (readonly)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 9
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
Instance Method Details
#__swap__(spec)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 102
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 95
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
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 130
def build_dependency(name, requirements) Gem::Dependency.new(name, requirements) rescue ArgumentError => e raise unless e. .include?(ILLFORMED_MESSAGE) puts # we shouldn't print the error message on the "fetching info" status line raise GemspecError, "Unfortunately, the gem #{name} (#{version}) has an invalid " \ "gemspec.\nPlease ask the gem author to yank the bad version to fix " \ "this issue. For more information, see http://bit.ly/syck-defaultkey." 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 109
def local_specification_path "#{base_dir}/specifications/#{full_name}.gemspec" end
#parse_metadata(data) (private)
[ GitHub ]# File 'lib/bundler/endpoint_specification.rb', line 113
def (data) return unless data data.each do |k, v| next unless v case k.to_s when "checksum" @checksum = v.last 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