Sha256: 4c67e31ed55885e9960f955346eb015560ce628dac51b1456f04f0a8a96afa78

Contents?: true

Size: 1.83 KB

Versions: 31

Compression:

Stored size: 1.83 KB

Contents

module Bundler
  # used for Creating Specifications from the Gemcutter Endpoint
  class EndpointSpecification < Gem::Specification
    include MatchPlatform

    attr_reader :name, :version, :platform, :dependencies
    attr_accessor :source, :source_uri

    def initialize(name, version, platform, dependencies)
      @name         = name
      @version      = version
      @platform     = platform
      @dependencies = dependencies
    end

    def fetch_platform
      @platform
    end

    # needed for standalone, load required_paths from local gemspec
    # after the gem in installed
    def require_paths
      if @remote_specification
        @remote_specification.require_paths
      elsif _local_specification
        _local_specification.require_paths
      else
        super
      end
    end

    # needed for binstubs
    def executables
      if @remote_specification
        @remote_specification.executables
      elsif _local_specification
        _local_specification.executables
      else
        super
      end
    end

    # needed for bundle clean
    def bindir
      if @remote_specification
        @remote_specification.bindir
      elsif _local_specification
        _local_specification.bindir
      else
        super
      end
    end

    # needed for post_install_messages during install
    def post_install_message
      if @remote_specification
        @remote_specification.post_install_message
      elsif _local_specification
        _local_specification.post_install_message
      end
    end

    def _local_specification
      eval(File.read(local_specification_path)) if @loaded_from && File.exist?(local_specification_path)
    end

    def __swap__(spec)
      @remote_specification = spec
    end

    private
    def local_specification_path
      "#{base_dir}/specifications/#{full_name}.gemspec"
    end
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
bundler-1.7.15 lib/bundler/endpoint_specification.rb
bundler-1.7.14 lib/bundler/endpoint_specification.rb
bundler-1.7.13 lib/bundler/endpoint_specification.rb
bundler-1.7.12 lib/bundler/endpoint_specification.rb
bundler-1.7.11 lib/bundler/endpoint_specification.rb
bundler-1.7.10 lib/bundler/endpoint_specification.rb
bundler-1.7.9 lib/bundler/endpoint_specification.rb
bundler-1.7.8 lib/bundler/endpoint_specification.rb
bundler-1.7.7 lib/bundler/endpoint_specification.rb
bundler-1.7.6 lib/bundler/endpoint_specification.rb
bundler-1.6.9 lib/bundler/endpoint_specification.rb
bundler-1.7.5 lib/bundler/endpoint_specification.rb
bundler-1.6.8 lib/bundler/endpoint_specification.rb
bundler-1.7.4 lib/bundler/endpoint_specification.rb
bundler-1.6.7 lib/bundler/endpoint_specification.rb
bundler-1.7.3 lib/bundler/endpoint_specification.rb
bundler-1.6.6 lib/bundler/endpoint_specification.rb
bundler-1.7.2 lib/bundler/endpoint_specification.rb
bundler-1.7.1 lib/bundler/endpoint_specification.rb
bundler-1.7.1.pre.3 lib/bundler/endpoint_specification.rb