Created
October 15, 2016 07:56
-
-
Save dariubs/fb2ff64c7b72e8ad7e8cac94d7cce06e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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