douche 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/douche/kernlol.rb +16 -0
- data/lib/douche/version.rb +1 -1
- metadata +1 -1
data/lib/douche/kernlol.rb
CHANGED
@@ -69,5 +69,21 @@ module Kernel
|
|
69
69
|
alias :p_with_no_lulz :p
|
70
70
|
alias :p :p_with_lulz
|
71
71
|
|
72
|
+
def print_with_lulz *args
|
73
|
+
puts_with_no_lulz LULZ
|
74
|
+
print_with_no_lulz *args
|
75
|
+
end
|
76
|
+
|
77
|
+
alias :print_with_no_lulz :print
|
78
|
+
alias :print :print_with_lulz
|
79
|
+
|
80
|
+
def printf_with_lulz *args
|
81
|
+
puts_with_no_lulz LULZ
|
82
|
+
printf_with_no_lulz *args
|
83
|
+
end
|
84
|
+
|
85
|
+
alias :printf_with_no_lulz :printf
|
86
|
+
alias :printf :printf_with_lulz
|
87
|
+
|
72
88
|
end
|
73
89
|
|
data/lib/douche/version.rb
CHANGED