diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-07-15 20:48:05 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-07-15 21:30:34 +0200 |
commit | 69497adf904ef8c231316aba73db1f7524b060e5 (patch) | |
tree | 45b82529ac35f8d10b37382334a1d1cc7ef5ca29 /lib/bundler/cli.rb | |
parent | ff1a669efb74d79fdbc5fc1bf15e44853048b9a5 (diff) | |
download | bundler-add_package_functionality_to_cache.tar.gz |
Alias `cache` to `package` nowadd_package_functionality_to_cache
The additions of the `package` command are not actually backwards
incompatible, so we can do this transition without further care. All
existing specs of `bundle cache` pass when using the `bundle package`
implementation for it.
Diffstat (limited to 'lib/bundler/cli.rb')
-rw-r--r-- | lib/bundler/cli.rb | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb index 8a6518bedd..c7af38bcaf 100644 --- a/lib/bundler/cli.rb +++ b/lib/bundler/cli.rb @@ -410,20 +410,6 @@ module Bundler Outdated.new(options, gems).run end - if Bundler.feature_flag.bundler_3_mode? - map %w[cache] => :package - else - desc "cache [OPTIONS]", "Cache all the gems to vendor/cache", :hide => true - method_option "all", :type => :boolean, - :banner => "Include all sources (including path and git)." - method_option "all-platforms", :type => :boolean, :banner => "Include gems for all platforms present in the lockfile, not only the current one" - method_option "no-prune", :type => :boolean, :banner => "Don't remove stale gems from the cache." - def cache - require_relative "cli/cache" - Cache.new(options).run - end - end - desc "#{Bundler.feature_flag.bundler_3_mode? ? :cache : :package} [OPTIONS]", "Locks and then caches all of the gems into vendor/cache" method_option "all", :type => :boolean, :default => Bundler.feature_flag.cache_all?, @@ -449,7 +435,7 @@ module Bundler require_relative "cli/package" Package.new(options).run end - map %w[pack] => :package + map %w[cache pack] => :package desc "exec [OPTIONS]", "Run the command in context of the bundle" method_option :keep_file_descriptors, :type => :boolean, :default => false |