class Bundler::CLI::Clean

def initialize(options)

def initialize(options)
  @options = options
end

def run

def run
  if Bundler.settings[:path] || options[:force]
    Bundler.load.clean(options[:"dry-run"])
  else
    Bundler.ui.error "Can only use bundle clean when --path is set or --force is set"
    exit 1
  end
end