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.



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

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

Instance Method Details

#executeObject



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

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