zalgo 0.0.2 → 0.0.3
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/bin/zalgo +5 -6
- metadata +2 -2
data/bin/zalgo
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
3
|
require 'rubygems'
|
|
4
|
+
require 'zalgo'
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
if ARGV[0]
|
|
7
|
+
puts Zalgo.he_comes ARGV.join(' ')
|
|
8
|
+
else
|
|
9
|
+
puts Zalgo.he_comes STDIN.read
|
|
9
10
|
end
|
|
10
|
-
|
|
11
|
-
puts Zalgo.he_comes ARGV.join(' ')
|