Skip to content

Instantly share code, notes, and snippets.

@dariubs
Created October 15, 2016 07:56
Show Gist options
  • Select an option

  • Save dariubs/fb2ff64c7b72e8ad7e8cac94d7cce06e to your computer and use it in GitHub Desktop.

Select an option

Save dariubs/fb2ff64c7b72e8ad7e8cac94d7cce06e to your computer and use it in GitHub Desktop.
require 'thor'
class Thoring < Thor
desc 'hi name', 'say hi to name'
def hi(name)
puts "Hi #{name}"
end
end
Thoring.start(ARGV)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment