bin/orly in orly-0.0.4 vs bin/orly in orly-0.0.5
- old
+ new
@@ -32,8 +32,18 @@
long "--run"
desc "run orly now"
action { Orly::run() }
end
+ option :speak do
+ short '-s'
+ long "--speak"
+ desc "makes the O RLY owl talk"
+ action do |value|
+ value = "YA RLY" if value == true
+ Orly::OwlPrinter.print(value.split("\n"))
+ end
+ end
+
end
Choice.help if Choice.choices.empty?
\ No newline at end of file