douche 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Gemfile +5 -0
- data/Rakefile +1 -0
- data/douche.gemspec +20 -0
- data/lib/douche.rb +5 -0
- data/lib/douche/kernlol.rb +73 -0
- data/lib/douche/version.rb +3 -0
- metadata +61 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/douche.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "douche/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "douche"
|
7
|
+
s.version = Douche::VERSION
|
8
|
+
s.authors = ["Ryan Allen"]
|
9
|
+
s.email = ["ryan@yeahnah.org"]
|
10
|
+
s.homepage = ""
|
11
|
+
s.summary = %q{Shut up!}
|
12
|
+
s.description = %q{What is this for!}
|
13
|
+
|
14
|
+
s.rubyforge_project = "douche"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
end
|
data/lib/douche.rb
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
#encoding: UTF-8
|
2
|
+
|
3
|
+
module Kernel
|
4
|
+
LULZ = %q{
|
5
|
+
|
6
|
+
`'@@@@@@@@@#: `
|
7
|
+
:@@;` ,'@@+
|
8
|
+
@#:;:;::;:,,,:, `:+#@',
|
9
|
+
.# ,::+ .#@+@@@@@@ `` `,+'. ``
|
10
|
+
'@ ##@+ :::;:,,,:` :@,@@. `'' `''''''` +'`
|
11
|
+
## @@@ .,,..:, :#@@@#`@ `'' ''' ''' ''`
|
12
|
+
'@ ;;@; +@@@@@, @+ `+#@ `'' ;'' `''. ''`
|
13
|
+
@ '##``+# #+ @, #@@.# `'' ''` ,'' ''`
|
14
|
+
@ +@@` :#` @ +# +@# @ `'' ''` .'' ''`
|
15
|
+
`@ @ +. @ @ `'' ''` ;'' ''`
|
16
|
+
:' @ . ,# @ +@ `'' ,'' ''` ''`
|
17
|
+
@ .# @@#, .# `@ @# `''....` '''``''' '',....
|
18
|
+
@ :#@ @#@ '; ## #+': `''''''; '''''' '''''''`
|
19
|
+
@ `;:.#,'+ @ ` `+@@@@@@@#;; `` `
|
20
|
+
# :,#@ #. ` +# @'
|
21
|
+
,+ ` `@@@#@` ,@ ,: @`
|
22
|
+
+. :@# @''@@ `@
|
23
|
+
# ;+#@#. #+ #@ @` @
|
24
|
+
# ` `,;` @ #@##@+@ @
|
25
|
+
@ ::::, @@ @`@ #++@ +
|
26
|
+
# .::::: @' @;@+@;:@ @
|
27
|
+
# ` @ @ @ @
|
28
|
+
+` `:;:::;.@ @ @ @
|
29
|
+
`# . .@ @ @`@
|
30
|
+
# : @ @ ;'#`
|
31
|
+
@ ,` . , @ @ @ @
|
32
|
+
# : ; . @ @ @ @
|
33
|
+
`@ , : : @ @ .# @
|
34
|
+
@ ;: ; :::` @ # :# @
|
35
|
+
@` `:: , `:: `@ @ .# +.
|
36
|
+
@ :; : :: ',': @ `#
|
37
|
+
@ ,:` : ::``: @ @..+# # #
|
38
|
+
+: :; : .: . @ @ @`@ #
|
39
|
+
@ :: .` ; :' @ @+. #
|
40
|
+
#` ` ; : .## ; # `@,,,,;@#` #
|
41
|
+
@ ;: ; #: `@ @ # '@ @ #
|
42
|
+
@. ;;` , `# @ @.@ '@ @ `#
|
43
|
+
@ `,`;` ., @@ @#,.@@#; ':
|
44
|
+
:# ., .: : `# @ @ @
|
45
|
+
`+@ :.`:` '# `@@@@ ``@
|
46
|
+
`'@ :::; @ @`
|
47
|
+
`@; ::::;;:;.:@ `@
|
48
|
+
+@+ :::. .@@#'#@@ `
|
49
|
+
+@#` ,,, @#
|
50
|
+
+@@# ` @:#@`
|
51
|
+
;@# `@@,
|
52
|
+
.#@#@@
|
53
|
+
|
54
|
+
}
|
55
|
+
|
56
|
+
def puts_with_lulz *args
|
57
|
+
puts_with_no_lulz LULZ
|
58
|
+
puts_with_no_lulz *args
|
59
|
+
end
|
60
|
+
|
61
|
+
alias :puts_with_no_lulz :puts
|
62
|
+
alias :puts :puts_with_lulz
|
63
|
+
|
64
|
+
def p_with_lulz *args
|
65
|
+
puts_with_no_lulz LULZ
|
66
|
+
p_with_no_lulz *args
|
67
|
+
end
|
68
|
+
|
69
|
+
alias :p_with_no_lulz :p
|
70
|
+
alias :p :p_with_lulz
|
71
|
+
|
72
|
+
end
|
73
|
+
|
metadata
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: douche
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.2
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Ryan Allen
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-07-28 00:00:00 Z
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: What is this for!
|
17
|
+
email:
|
18
|
+
- ryan@yeahnah.org
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- .gitignore
|
27
|
+
- Gemfile
|
28
|
+
- Rakefile
|
29
|
+
- douche.gemspec
|
30
|
+
- lib/douche.rb
|
31
|
+
- lib/douche/kernlol.rb
|
32
|
+
- lib/douche/version.rb
|
33
|
+
homepage: ""
|
34
|
+
licenses: []
|
35
|
+
|
36
|
+
post_install_message:
|
37
|
+
rdoc_options: []
|
38
|
+
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: "0"
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
none: false
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: "0"
|
53
|
+
requirements: []
|
54
|
+
|
55
|
+
rubyforge_project: douche
|
56
|
+
rubygems_version: 1.8.5
|
57
|
+
signing_key:
|
58
|
+
specification_version: 3
|
59
|
+
summary: Shut up!
|
60
|
+
test_files: []
|
61
|
+
|