fix errant MM bootup during CLI. Make an autodiscoverable tasks/ directory

This commit is contained in:
Thomas Reynolds 2012-01-16 14:55:08 -08:00
parent aeb9d10b25
commit d1f0e6f616
5 changed files with 30 additions and 17 deletions

View file

@ -0,0 +1,6 @@
class Hello < Thor
desc "hello", "Say hello"
def hello
puts "Hello World"
end
end