orly 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +4 -1
- data/bin/orly +10 -0
- data/lib/orly/version.rb +1 -1
- metadata +3 -3
data/CHANGELOG.md
CHANGED
data/bin/orly
CHANGED
@@ -34,6 +34,16 @@ Choice.options do
|
|
34
34
|
action { Orly::run() }
|
35
35
|
end
|
36
36
|
|
37
|
+
option :speak do
|
38
|
+
short '-s'
|
39
|
+
long "--speak"
|
40
|
+
desc "makes the O RLY owl talk"
|
41
|
+
action do |value|
|
42
|
+
value = "YA RLY" if value == true
|
43
|
+
Orly::OwlPrinter.print(value.split("\n"))
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
37
47
|
end
|
38
48
|
|
39
49
|
Choice.help if Choice.choices.empty?
|
data/lib/orly/version.rb
CHANGED
metadata
CHANGED