Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created September 22, 2008 16:25
Show Gist options
  • Save jackdempsey/12038 to your computer and use it in GitHub Desktop.
Save jackdempsey/12038 to your computer and use it in GitHub Desktop.
~/testbed $ emacs foo.thor
~/testbed $ thor -T
Tasks
-----
foo:hello hello
~/testbed $ thor foo:hello
hello
~/testbed $ cat foo.thor
class Foo < Thor
desc 'hello', 'hello'
def hello
puts "hello"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment