# File bundler/source_list.rb, line 15 def initialize @path_sources = [] @git_sources = [] @plugin_sources = [] @global_rubygems_source = nil @global_path_source = nil @rubygems_sources = [] @metadata_source = Source::Metadata.new @merged_gem_lockfile_sections = false end
# File bundler/source_list.rb, line 50 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
# File bundler/source_list.rb, line 67 def add_global_rubygems_remote(uri) global_rubygems_source.add_remote(uri) global_rubygems_source end
# File bundler/source_list.rb, line 40 def add_path_source(options = {}) if options["gemspec"] add_source_to_list Source::Gemspec.new(options), path_sources else path_source = add_source_to_list Source::Path.new(options), path_sources @global_path_source ||= path_source if options["global"] path_source end end
# File bundler/source_list.rb, line 63 def add_plugin_source(source, options = {}) add_source_to_list Plugin.source(source).new(options), @plugin_sources end
# File bundler/source_list.rb, line 56 def add_rubygems_source(options = {}) new_source = Source::Rubygems.new(options) return @global_rubygems_source if @global_rubygems_source == new_source add_source_to_list new_source, @rubygems_sources end
# File bundler/source_list.rb, line 36 def aggregate_global_source? global_rubygems_source.multiple_remotes? end
# File bundler/source_list.rb, line 88 def all_sources path_sources + git_sources + plugin_sources + rubygems_sources + [metadata_source] end
# File bundler/source_list.rb, line 138 def cached! all_sources.each(&:cached!) end
# File bundler/source_list.rb, line 72 def default_source global_path_source || global_rubygems_source end
Returns true if there are changes
# File bundler/source_list.rb, line 126 def expired_sources?(replacement_sources) return false if replacement_sources.empty? lock_sources = dup_with_replaced_sources(replacement_sources).lock_sources different_sources?(lock_sources, replacement_sources) end
# File bundler/source_list.rb, line 96 def get(source) source_list_for(source).find {|s| equal_source?(source, s) || equivalent_source?(source, s) } end
# File bundler/source_list.rb, line 11 def global_rubygems_source @global_rubygems_source ||= rubygems_aggregate_class.new("allow_local" => true) end
# File bundler/source_list.rb, line 134 def local_only! all_sources.each(&:local_only!) end
# File bundler/source_list.rb, line 104 def lock_other_sources (path_sources + git_sources + plugin_sources).sort_by(&:to_s) end
# File bundler/source_list.rb, line 108 def lock_rubygems_sources if merged_gem_lockfile_sections? [combine_rubygems_sources] else rubygems_sources.sort_by(&:to_s) end end
# File bundler/source_list.rb, line 100 def lock_sources lock_other_sources + lock_rubygems_sources end
# File bundler/source_list.rb, line 31 def merged_gem_lockfile_sections!(replacement_source) @merged_gem_lockfile_sections = true @global_rubygems_source = replacement_source end
# File bundler/source_list.rb, line 27 def merged_gem_lockfile_sections? @merged_gem_lockfile_sections end
# File bundler/source_list.rb, line 92 def non_default_explicit_sources all_sources - [default_source, metadata_source] end
# File bundler/source_list.rb, line 80 def non_global_rubygems_sources @rubygems_sources end
# File bundler/source_list.rb, line 142 def remote! all_sources.each(&:remote!) end
Returns true if there are changes
# File bundler/source_list.rb, line 117 def replace_sources!(replacement_sources) return false if replacement_sources.empty? @path_sources, @git_sources, @plugin_sources = map_sources(replacement_sources) different_sources?(lock_sources, replacement_sources) end