In Files

  • bundler/endpoint_specification.rb

Class/Module Index [+]

Quicksearch

Bundler::EndpointSpecification

used for Creating Specifications from the Gemcutter Endpoint

Attributes

checksum[R]
dependencies[RW]
name[R]
platform[R]
remote[RW]
source[RW]
version[R]

Public Class Methods

new(name, version, platform, spec_fetcher, dependencies, metadata = nil) click to toggle source
 
               # File bundler/endpoint_specification.rb, line 10
def initialize(name, version, platform, spec_fetcher, dependencies, metadata = 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

  parse_metadata(metadata)
end
            

Public Instance Methods

__swap__(spec) click to toggle source
 
               # File bundler/endpoint_specification.rb, line 109
def __swap__(spec)
  SharedHelpers.ensure_same_dependencies(self, dependencies, spec.dependencies)
  @remote_specification = spec
end
            
_local_specification() click to toggle source
 
               # File bundler/endpoint_specification.rb, line 102
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() click to toggle source

needed for bundle clean

 
               # File bundler/endpoint_specification.rb, line 70
def bindir
  if @remote_specification
    @remote_specification.bindir
  elsif _local_specification
    _local_specification.bindir
  else
    super
  end
end
            
executables() click to toggle source

needed for binstubs

 
               # File bundler/endpoint_specification.rb, line 59
def executables
  if @remote_specification
    @remote_specification.executables
  elsif _local_specification
    _local_specification.executables
  else
    super
  end
end
            
extensions() click to toggle source

needed for “with native extensions” during install

 
               # File bundler/endpoint_specification.rb, line 92
def extensions
  if @remote_specification
    @remote_specification.extensions
  elsif _local_specification
    _local_specification.extensions
  else
    super
  end
end
            
fetch_platform() click to toggle source
 
               # File bundler/endpoint_specification.rb, line 32
def fetch_platform
  @platform
end
            
load_paths() click to toggle source

needed for inline

 
               # File bundler/endpoint_specification.rb, line 49
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() click to toggle source

needed for post_install_messages during install

 
               # File bundler/endpoint_specification.rb, line 81
def post_install_message
  if @remote_specification
    @remote_specification.post_install_message
  elsif _local_specification
    _local_specification.post_install_message
  else
    super
  end
end
            
require_paths() click to toggle source

needed for standalone, load required_paths from local gemspec after the gem is installed

 
               # File bundler/endpoint_specification.rb, line 38
def require_paths
  if @remote_specification
    @remote_specification.require_paths
  elsif _local_specification
    _local_specification.require_paths
  else
    super
  end
end
            
required_ruby_version() click to toggle source
 
               # File bundler/endpoint_specification.rb, line 24
def required_ruby_version
  @required_ruby_version ||= _remote_specification.required_ruby_version
end
            
required_rubygems_version() click to toggle source
 
               # File bundler/endpoint_specification.rb, line 28
def required_rubygems_version
  @required_rubygems_version ||= _remote_specification.required_rubygems_version
end
            
There is an updated format of the API docs for this version here.