# File lib/bundler/cli/clean.rb, line 6 def initialize(options) @options = options end
# File lib/bundler/cli/clean.rb, line 10 def run require_path_or_force Bundler.load.clean(options[:"dry-run"]) end
# File lib/bundler/cli/clean.rb, line 17 def require_path_or_force if !Bundler.settings[:path] && !options[:force] Bundler.ui.error "Cleaning all the gems on your system is dangerous! " "If you're sure you want to remove every system gem not in this " "bundle, run `bundle clean --force`." exit 1 end end