zalgo 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- 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(' ')
|