ace/example/tasks.rb

11 lines
173 B
Ruby
Raw Permalink Normal View History

2011-05-26 12:10:16 +02:00
#!/usr/bin/env bundle exec nake
# encoding: utf-8
Task.new(:generate) do |task|
task.description = "Generate static HTML."
task.define do
sh "./boot.rb"
end
end