Method: Bundler::CLI#update

Defined in:
lib/bundler/cli.rb

#update(*gems) ⇒ Object


276
277
278
279
280
281
282
# File 'lib/bundler/cli.rb', line 276

def update(*gems)
  SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
  require_relative "cli/update"
  Bundler.settings.temporary(no_install: false) do
    Update.new(options, gems).run
  end
end