Created
August 27, 2017 00:26
-
-
Save picatz/c2460fe45703c4d0b6f6ecda247e57c5 to your computer and use it in GitHub Desktop.
Command Lion -- Hello World Application
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 'command_lion' | |
CommandLion::App.run do | |
name "Hello World" | |
command :hello_world do | |
flag "--hello-world" | |
action do | |
puts "Hello World!" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment