lolcat 42.0.85 → 42.0.99
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/ass/screenshot.png +0 -0
- data/lib/lolcat/cat.rb +2 -2
- data/lib/lolcat/version.rb +1 -1
- metadata +2 -2
data/ass/screenshot.png
CHANGED
|
Binary file
|
data/lib/lolcat/cat.rb
CHANGED
|
@@ -71,7 +71,7 @@ HEADER
|
|
|
71
71
|
banner <<FOOTER
|
|
72
72
|
|
|
73
73
|
Examples:
|
|
74
|
-
lolcat f - g Output f's contents, then
|
|
74
|
+
lolcat f - g Output f's contents, then stdin, then g's contents.
|
|
75
75
|
lolcat Copy standard input to standard output.
|
|
76
76
|
fortune | lolcat Display a rainbow cookie.
|
|
77
77
|
|
|
@@ -97,7 +97,7 @@ FOOTER
|
|
|
97
97
|
|
|
98
98
|
p.die :spread, "must be > 0" if opts[:spread] < 0.1
|
|
99
99
|
p.die :duration, "must be > 0" if opts[:duration] < 0.1
|
|
100
|
-
p.die :speed, "must be > 0.1" if opts[:
|
|
100
|
+
p.die :speed, "must be > 0.1" if opts[:speed] < 0.1
|
|
101
101
|
|
|
102
102
|
opts[:os] = opts[:seed]
|
|
103
103
|
opts[:os] = rand(256) if opts[:os] == 0
|
data/lib/lolcat/version.rb
CHANGED