diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2017-06-15 14:21:13 -0500 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2017-06-23 19:40:12 -0500 |
commit | 358736a1716f2b87879c11858b2672af538ed82d (patch) | |
tree | 1d93a285178db87cb37ff92103aa9b777163d35c /lib/bundler/plugin | |
parent | 1e23246902f950a3fa4132d2effaea47c723d51c (diff) | |
download | bundler-358736a1716f2b87879c11858b2672af538ed82d.tar.gz |
Implement source pinning for 2.0
Diffstat (limited to 'lib/bundler/plugin')
-rw-r--r-- | lib/bundler/plugin/source_list.rb | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/bundler/plugin/source_list.rb b/lib/bundler/plugin/source_list.rb index 33f5e5afbd..f0e212205f 100644 --- a/lib/bundler/plugin/source_list.rb +++ b/lib/bundler/plugin/source_list.rb @@ -5,13 +5,6 @@ module Bundler # approptiate options to be used with Source classes for plugin installation module Plugin class SourceList < Bundler::SourceList - def initialize - @path_sources = [] - @git_sources = [] - @rubygems_aggregate = Plugin::Installer::Rubygems.new - @rubygems_sources = [] - end - def add_git_source(options = {}) add_source_to_list Plugin::Installer::Git.new(options), git_sources end @@ -21,7 +14,13 @@ module Bundler end def all_sources - path_sources + git_sources + rubygems_sources + path_sources + git_sources + rubygems_sources + [metadata_source] + end + + private + + def rubygems_aggregate_class + Plugin::Installer::Rubygems end end end |