summaryrefslogtreecommitdiff
path: root/lib/bundler/remote_specification.rb
blob: b483f83a06baca7fc5ae0222cca01e1a5509981f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module Bundler
  # Represents a lazily loaded gem specification, where the full specification
  # is on the source server in rubygems' "quick" index. The proxy object is to
  # be seeded with what we're given from the source's abbreviated index - the
  # full specification will only be fetched when necesary.
  class RemoteSpecification
    attr_reader :name, :version, :platform
    attr_accessor :source

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

    def full_name
      if platform == Gem::Platform::RUBY or platform.nil? then
        "#{@name}-#{@version}"
      else
        "#{@name}-#{@version}-#{platform}"
      end
    end

    # Because Rubyforge cannot be trusted to provide valid specifications
    # once the remote gem is donwloaded, the backend specification will
    # be swapped out.
    def __swap__(spec)
      @specification = spec
    end

  private

    def _remote_uri
      # "#{@source_uri}/quick/Marshal.4.8/#{@name}-#{@version}.gemspec.rz"
      tuple = [@name, @version, @platform]
      tuple = tuple - [nil, 'ruby', '']
      "#{@source_uri}/quick/Marshal.4.8/#{tuple.join("-")}.gemspec.rz"
    end

    def _remote_specification
      @specification ||= begin
        deflated = Gem::RemoteFetcher.fetcher.fetch_path(_remote_uri)
        inflated = Gem.inflate(deflated)
        Marshal.load(inflated)
      end
    end

    def method_missing(method, *args, &blk)
      _remote_specification.send(method, *args, &blk)
    end
  end
end