Class: Bundler::Fetcher::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/fetcher/base.rb

Direct Known Subclasses

CompactIndex, Dependency, Index

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(downloader, remote, display_uri) ⇒ Base

Returns a new instance of Base.



10
11
12
13
14
15
# File 'lib/bundler/fetcher/base.rb', line 10

def initialize(downloader, remote, display_uri)
  raise "Abstract class" if self.class == Base
  @downloader = downloader
  @remote = remote
  @display_uri = display_uri
end

Instance Attribute Details

#display_uriObject (readonly)

Returns the value of attribute display_uri.



7
8
9
# File 'lib/bundler/fetcher/base.rb', line 7

def display_uri
  @display_uri
end

#downloaderObject (readonly)

Returns the value of attribute downloader.



6
7
8
# File 'lib/bundler/fetcher/base.rb', line 6

def downloader
  @downloader
end

#remoteObject (readonly)

Returns the value of attribute remote.



8
9
10
# File 'lib/bundler/fetcher/base.rb', line 8

def remote
  @remote
end

Instance Method Details

#api_fetcher?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/bundler/fetcher/base.rb', line 35

def api_fetcher?
  false
end

#available?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/bundler/fetcher/base.rb', line 31

def available?
  true
end

#fetch_uriObject



21
22
23
24
25
26
27
28
29
# File 'lib/bundler/fetcher/base.rb', line 21

def fetch_uri
  @fetch_uri ||= if remote_uri.host == "rubygems.org"
    uri = remote_uri.dup
    uri.host = "index.rubygems.org"
    uri
  else
    remote_uri
  end
end

#remote_uriObject



17
18
19
# File 'lib/bundler/fetcher/base.rb', line 17

def remote_uri
  @remote.uri
end