ace/example/tasks.rb
Jakub Stastny aka botanicus e5fe48990d Fixed the example.
2011-05-26 12:10:16 +02:00

11 lines
173 B
Ruby
Executable file

#!/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