Skip to content

Instantly share code, notes, and snippets.

@btisdall
Last active August 29, 2015 13:57
Show Gist options
  • Save btisdall/9369855 to your computer and use it in GitHub Desktop.
Save btisdall/9369855 to your computer and use it in GitHub Desktop.
# vi:syntax=ruby
module Ben
class Test < Thor
desc "example", "an example task"
def example
puts "I'm a thor task!"
end
desc "grizz", "another thing"
def grizz
puts "Oof!"
end
end
class Wut < Thor
desc "example", "an example task"
def example
puts "I'm a thor task!"
end
desc "grizz", "another thing"
def grizz
puts "Oof!"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment