Method: Bundler::CLI#remove
- Defined in:
- lib/bundler/cli.rb
permalink #remove(*gems) ⇒ Object
[View source]
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/bundler/cli.rb', line 191 def remove(*gems) if ARGV.include?("--install") = "The `--install` flag has been deprecated. `bundle install` is triggered by default." = "The `--install` flag has been removed. `bundle install` is triggered by default." SharedHelpers.major_deprecation(2, , removed_message: ) end require_relative "cli/remove" Remove.new(gems, ).run end |