module Rake::DSL

Public Instance Methods

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

Define a task that will run no matter how many times it has been invoked

# File lib/rake/opt/chore/patches/rake/dsl.rb, line 5
def chore(*args, &block)
  Rake::Opt::Chore.define_task(*args, &block)
end