Class: BuildTool::ModuleActions::Clean

Inherits:
Base
  • Object
show all
Defined in:
lib/build-tool/command_actions.rb

Instance Method Summary collapse

Methods inherited from Base

#do

Constructor Details

#initialize(command, mod) ⇒ Clean

Returns a new instance of Clean.



93
94
95
# File 'lib/build-tool/command_actions.rb', line 93

def initialize( command, mod )
    super( command, 10, :clean, mod )
end

Instance Method Details

#executeObject



97
98
99
100
# File 'lib/build-tool/command_actions.rb', line 97

def execute()
    logger.info "Cleaning"
    @module.clean()
end