Class: Bundler::SourceList
- Inherits:
-
Object
- Object
- Bundler::SourceList
- Defined in:
- lib/bundler/source_list.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#git_sources ⇒ Object
readonly
Returns the value of attribute git_sources.
-
#global_path_source ⇒ Object
readonly
Returns the value of attribute global_path_source.
-
#metadata_source ⇒ Object
readonly
Returns the value of attribute metadata_source.
-
#path_sources ⇒ Object
readonly
Returns the value of attribute path_sources.
-
#plugin_sources ⇒ Object
readonly
Returns the value of attribute plugin_sources.
Instance Method Summary collapse
- #add_git_source(options = {}) ⇒ Object
- #add_path_source(options = {}) ⇒ Object
- #add_plugin_source(source, options = {}) ⇒ Object
- #add_rubygems_remote(uri) ⇒ Object
- #add_rubygems_source(options = {}) ⇒ Object
- #all_sources ⇒ Object
- #cached! ⇒ Object
- #default_source ⇒ Object
- #get(source) ⇒ Object
- #global_rubygems_source ⇒ Object
- #global_rubygems_source=(uri) ⇒ Object
-
#initialize ⇒ SourceList
constructor
A new instance of SourceList.
- #local_only! ⇒ Object
- #lock_other_sources ⇒ Object
- #lock_rubygems_sources ⇒ Object
- #lock_sources ⇒ Object
- #merged_gem_lockfile_sections! ⇒ Object
- #merged_gem_lockfile_sections? ⇒ Boolean
- #no_aggregate_global_source? ⇒ Boolean
- #non_default_explicit_sources ⇒ Object
- #non_global_rubygems_sources ⇒ Object
- #remote! ⇒ Object
-
#replace_sources!(replacement_sources) ⇒ Object
Returns true if there are changes.
- #rubygems_remotes ⇒ Object
- #rubygems_sources ⇒ Object
Constructor Details
#initialize ⇒ SourceList
Returns a new instance of SourceList.
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/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 |
Instance Attribute Details
#git_sources ⇒ Object (readonly)
Returns the value of attribute git_sources.
5 6 7 |
# File 'lib/bundler/source_list.rb', line 5 def git_sources @git_sources end |
#global_path_source ⇒ Object (readonly)
Returns the value of attribute global_path_source.
5 6 7 |
# File 'lib/bundler/source_list.rb', line 5 def global_path_source @global_path_source end |
#metadata_source ⇒ Object (readonly)
Returns the value of attribute metadata_source.
5 6 7 |
# File 'lib/bundler/source_list.rb', line 5 def @metadata_source end |
#path_sources ⇒ Object (readonly)
Returns the value of attribute path_sources.
5 6 7 |
# File 'lib/bundler/source_list.rb', line 5 def path_sources @path_sources end |
#plugin_sources ⇒ Object (readonly)
Returns the value of attribute plugin_sources.
5 6 7 |
# File 'lib/bundler/source_list.rb', line 5 def plugin_sources @plugin_sources end |
Instance Method Details
#add_git_source(options = {}) ⇒ Object
49 50 51 52 53 |
# File 'lib/bundler/source_list.rb', line 49 def add_git_source( = {}) add_source_to_list(Source::Git.new(), git_sources).tap do |source| warn_on_git_protocol(source) end end |
#add_path_source(options = {}) ⇒ Object
39 40 41 42 43 44 45 46 47 |
# File 'lib/bundler/source_list.rb', line 39 def add_path_source( = {}) if ["gemspec"] add_source_to_list Source::Gemspec.new(), path_sources else path_source = add_source_to_list Source::Path.new(), path_sources @global_path_source ||= path_source if ["global"] path_source end end |
#add_plugin_source(source, options = {}) ⇒ Object
59 60 61 |
# File 'lib/bundler/source_list.rb', line 59 def add_plugin_source(source, = {}) add_source_to_list Plugin.source(source).new(), @plugin_sources end |
#add_rubygems_remote(uri) ⇒ Object
67 68 69 70 |
# File 'lib/bundler/source_list.rb', line 67 def add_rubygems_remote(uri) global_rubygems_source.add_remote(uri) global_rubygems_source end |
#add_rubygems_source(options = {}) ⇒ Object
55 56 57 |
# File 'lib/bundler/source_list.rb', line 55 def add_rubygems_source( = {}) add_source_to_list Source::Rubygems.new(), @rubygems_sources end |
#all_sources ⇒ Object
88 89 90 |
# File 'lib/bundler/source_list.rb', line 88 def all_sources path_sources + git_sources + plugin_sources + rubygems_sources + [] end |
#cached! ⇒ Object
139 140 141 |
# File 'lib/bundler/source_list.rb', line 139 def cached! all_sources.each(&:cached!) end |
#default_source ⇒ Object
72 73 74 |
# File 'lib/bundler/source_list.rb', line 72 def default_source global_path_source || global_rubygems_source end |
#get(source) ⇒ Object
96 97 98 |
# File 'lib/bundler/source_list.rb', line 96 def get(source) source_list_for(source).find {|s| equal_source?(source, s) || equivalent_source?(source, s) } end |
#global_rubygems_source ⇒ Object
11 12 13 |
# File 'lib/bundler/source_list.rb', line 11 def global_rubygems_source @global_rubygems_source ||= rubygems_aggregate_class.new("allow_local" => true) end |
#global_rubygems_source=(uri) ⇒ Object
63 64 65 |
# File 'lib/bundler/source_list.rb', line 63 def global_rubygems_source=(uri) @global_rubygems_source ||= rubygems_aggregate_class.new("remotes" => uri, "allow_local" => true) end |
#local_only! ⇒ Object
135 136 137 |
# File 'lib/bundler/source_list.rb', line 135 def local_only! all_sources.each(&:local_only!) end |
#lock_other_sources ⇒ Object
104 105 106 |
# File 'lib/bundler/source_list.rb', line 104 def lock_other_sources (path_sources + git_sources + plugin_sources).sort_by(&:to_s) end |
#lock_rubygems_sources ⇒ Object
108 109 110 111 112 113 114 |
# File 'lib/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).uniq end end |
#lock_sources ⇒ Object
100 101 102 |
# File 'lib/bundler/source_list.rb', line 100 def lock_sources lock_other_sources + lock_rubygems_sources end |
#merged_gem_lockfile_sections! ⇒ Object
31 32 33 |
# File 'lib/bundler/source_list.rb', line 31 def merged_gem_lockfile_sections! @merged_gem_lockfile_sections = true end |
#merged_gem_lockfile_sections? ⇒ Boolean
27 28 29 |
# File 'lib/bundler/source_list.rb', line 27 def merged_gem_lockfile_sections? @merged_gem_lockfile_sections end |
#no_aggregate_global_source? ⇒ Boolean
35 36 37 |
# File 'lib/bundler/source_list.rb', line 35 def no_aggregate_global_source? global_rubygems_source.remotes.size <= 1 end |
#non_default_explicit_sources ⇒ Object
92 93 94 |
# File 'lib/bundler/source_list.rb', line 92 def non_default_explicit_sources all_sources - [default_source, ] end |
#non_global_rubygems_sources ⇒ Object
80 81 82 |
# File 'lib/bundler/source_list.rb', line 80 def non_global_rubygems_sources @rubygems_sources end |
#remote! ⇒ Object
143 144 145 |
# File 'lib/bundler/source_list.rb', line 143 def remote! all_sources.each(&:remote!) end |
#replace_sources!(replacement_sources) ⇒ Object
Returns true if there are changes
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/bundler/source_list.rb', line 117 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 = merged_gem_lockfile_sections? && replacement_sources.detect {|s| s.is_a?(Source::Rubygems) } @global_rubygems_source = replacement_rubygems if replacement_rubygems return true if !equal_sources?(lock_sources, replacement_sources) && !equivalent_sources?(lock_sources, replacement_sources) false end |
#rubygems_remotes ⇒ Object
84 85 86 |
# File 'lib/bundler/source_list.rb', line 84 def rubygems_remotes rubygems_sources.map(&:remotes).flatten.uniq end |
#rubygems_sources ⇒ Object
76 77 78 |
# File 'lib/bundler/source_list.rb', line 76 def rubygems_sources non_global_rubygems_sources + [global_rubygems_source] end |