Class: Bundler::CLI::Clean

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/cli/clean.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Clean

Returns a new instance of Clean.



6
7
8
# File 'lib/bundler/cli/clean.rb', line 6

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



4
5
6
# File 'lib/bundler/cli/clean.rb', line 4

def options
  @options
end

Instance Method Details

#runObject



10
11
12
13
# File 'lib/bundler/cli/clean.rb', line 10

def run
  require_path_or_force
  Bundler.load.clean(options[:"dry-run"])
end