Add a Rakefile to make this sucker runnable

This commit is contained in:
R. Tyler Croy 2014-08-10 15:32:31 -07:00
parent 1b2b1ea45c
commit 4e4efe8ade
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
desc "Say hello to the world"
task :hello do
puts "Hello there world, I'm a runnable war! (I think)"
end