Declare a set of files tasks to create the given directories on demand.
# File minirake, line 257
def directory(dir)
path = []
Sys.split_all(dir).each do |p|
path << p
FileTask.define_task(File.join(path)) do |t|
Sys.makedirs(t.name)
end
end
end
Declare a file task.
# File minirake, line 251
def file(args, &block)
MiniRake::FileTask.define_task(args, &block)
end
Write a message to standard out if $verbose is enabled.
# File minirake, line 273
def log(msg)
print " " if $trace && $verbose
puts msg if $verbose
end
Declare a rule for auto-tasks.
# File minirake, line 268
def rule(args, &block)
MiniRake::Task.create_rule(args, &block)
end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you are posting code samples in your comments, please wrap them in "<pre><code class="ruby" > ... </code></pre>" markup in order to get syntax highlighting.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file a bug report so that it can be corrected for the next release. Thank you.