class Bundler::SourceList

Attributes

git_sources[R]
path_sources[R]
plugin_sources[R]

Public Class Methods

new() click to toggle source
# File lib/bundler/source_list.rb, line 7
def initialize
  @path_sources       = []
  @git_sources        = []
  @plugin_sources     = []
  @rubygems_aggregate = Source::Rubygems.new
  @rubygems_sources   = []
end

Public Instance Methods

add_git_source(options = {}) click to toggle source
# File lib/bundler/source_list.rb, line 23
def add_git_source(options = {})
  add_source_to_list(Source::Git.new(options), git_sources).tap do |source|
    warn_on_git_protocol(source)
  end
end
add_path_source(options = {}) click to toggle source
# File lib/bundler/source_list.rb, line 15
def add_path_source(options = {})
  if options["gemspec"]
    add_source_to_list Source::Gemspec.new(options), path_sources
  else
    add_source_to_list Source::Path.new(options), path_sources
  end
end
add_plugin_source(source, options = {}) click to toggle source
# File lib/bundler/source_list.rb, line 33
def add_plugin_source(source, options = {})
  add_source_to_list Plugin.source(source).new(options), @plugin_sources
end
add_rubygems_remote(uri) click to toggle source
# File lib/bundler/source_list.rb, line 37
def add_rubygems_remote(uri)
  @rubygems_aggregate.add_remote(uri)
  @rubygems_aggregate
end
add_rubygems_source(options = {}) click to toggle source
# File lib/bundler/source_list.rb, line 29
def add_rubygems_source(options = {})
  add_source_to_list Source::Rubygems.new(options), @rubygems_sources
end
all_sources() click to toggle source
# File lib/bundler/source_list.rb, line 50
def all_sources
  path_sources + git_sources + plugin_sources + rubygems_sources
end
cached!() click to toggle source
# File lib/bundler/source_list.rb, line 81
def cached!
  all_sources.each(&:cached!)
end
get(source) click to toggle source
# File lib/bundler/source_list.rb, line 54
def get(source)
  source_list_for(source).find {|s| source == s }
end
lock_sources() click to toggle source
# File lib/bundler/source_list.rb, line 58
def lock_sources
  lock_sources = (path_sources + git_sources + plugin_sources).sort_by(&:to_s)
  lock_sources << combine_rubygems_sources
end
remote!() click to toggle source
# File lib/bundler/source_list.rb, line 85
def remote!
  all_sources.each(&:remote!)
end
replace_sources!(replacement_sources) click to toggle source
# File lib/bundler/source_list.rb, line 63
def replace_sources!(replacement_sources)
  return true if replacement_sources.empty?

  [path_sources, git_sources, plugin_sources].each do |source_list|
    source_list.map! do |source|
      replacement_sources.find {|s| s == source } || source
    end
  end

  replacement_rubygems =
    replacement_sources.detect {|s| s.is_a?(Source::Rubygems) }
  @rubygems_aggregate = replacement_rubygems if replacement_rubygems

  # Return true if there were changes
  lock_sources.to_set != replacement_sources.to_set ||
    rubygems_remotes.to_set != replacement_rubygems.remotes.to_set
end
rubygems_primary_remotes() click to toggle source
# File lib/bundler/source_list.rb, line 89
def rubygems_primary_remotes
  @rubygems_aggregate.remotes
end
rubygems_remotes() click to toggle source
# File lib/bundler/source_list.rb, line 46
def rubygems_remotes
  rubygems_sources.map(&:remotes).flatten.uniq
end
rubygems_sources() click to toggle source
# File lib/bundler/source_list.rb, line 42
def rubygems_sources
  @rubygems_sources + [@rubygems_aggregate]
end

Private Instance Methods

add_source_to_list(source, list) click to toggle source
# File lib/bundler/source_list.rb, line 95
def add_source_to_list(source, list)
  list.unshift(source).uniq!
  source
end
combine_rubygems_sources() click to toggle source
# File lib/bundler/source_list.rb, line 110
def combine_rubygems_sources
  Source::Rubygems.new("remotes" => rubygems_remotes)
end
source_list_for(source) click to toggle source
# File lib/bundler/source_list.rb, line 100
def source_list_for(source)
  case source
  when Source::Git          then git_sources
  when Source::Path         then path_sources
  when Source::Rubygems     then rubygems_sources
  when Plugin::API::Source  then plugin_sources
  else raise ArgumentError, "Invalid source: #{source.inspect}"
  end
end
warn_on_git_protocol(source) click to toggle source
# File lib/bundler/source_list.rb, line 114
def warn_on_git_protocol(source)
  return if Bundler.settings["git.allow_insecure"]

  if source.uri =~ /^git\:/
    Bundler.ui.warn "The git source `#{source.uri}` uses the `git` protocol, "            "which transmits data without encryption. Disable this warning with "            "`bundle config git.allow_insecure true`, or switch to the `https` "            "protocol to keep your data secure."
  end
end