douche 0.0.3 → 0.0.4
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/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