module Rake::DSL

Public Instance Methods

rototiller_task(*args, &block) click to toggle source

The main task type to implement base rototiller features in a Rake task @since v0.1.0 create a task object with rototiller helper methods for building commands and creating debug/log messaging see the rake-task documentation on things other than {.add_command} and {.add_env}

# File lib/rototiller/rake/dsl/dsl_extention.rb, line 10
def rototiller_task(*args, &block)
  Rototiller::Task::RototillerTask.define_task(*args, &block)
end