Class: BuildTool::ModuleActions::Clone

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) ⇒ Clone

Returns a new instance of Clone.



106
107
108
# File 'lib/build-tool/command_actions.rb', line 106

def initialize( command, mod )
    super( command, 20, :fetch, mod )
end

Instance Method Details

#executeObject



110
111
112
113
# File 'lib/build-tool/command_actions.rb', line 110

def execute()
    logger.info "Cloning"
    @module.clone
end