Skip to content

Instantly share code, notes, and snippets.

@yorickpeterse
Created June 18, 2015 14:38
Show Gist options
  • Save yorickpeterse/7e69b1a3a64ea175e20f to your computer and use it in GitHub Desktop.
Save yorickpeterse/7e69b1a3a64ea175e20f to your computer and use it in GitHub Desktop.
require 'slop'
puts Slop.parse do |opt|
opt.banner = 'butts'
opt.on '--version', 'Lee has been slacking off' do
puts 'ehm'
exit
end
end
opts = Slop.parse do |opt|
opt.banner = 'butts'
opt.on '--version', 'Lee has been slacking off' do
puts 'ehm'
exit
end
end
puts opts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment