Skip to content

Instantly share code, notes, and snippets.

@picatz
Created August 27, 2017 00:26
Show Gist options
  • Save picatz/c2460fe45703c4d0b6f6ecda247e57c5 to your computer and use it in GitHub Desktop.
Save picatz/c2460fe45703c4d0b6f6ecda247e57c5 to your computer and use it in GitHub Desktop.
Command Lion -- Hello World Application
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