lameGenerator 0.0.4 → 0.0.6
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.
- checksums.yaml +4 -4
- data/lib/lame_generator.rb +9 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29dc1c7d6ee707074ddb88799d0a19685b2bfeeb
|
4
|
+
data.tar.gz: 271fa052f2caa7db7632ec215e1a13a63309bf2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1a7bc8148190c41e4820669d522100048c5f8315e0d5e38907564cd0c3ecfca7837c14cd5d76ba57c708b39ec680cc373a0f9a1319d4a97a366aa9c2a0576a3
|
7
|
+
data.tar.gz: 5549c6e50f8fe15415bfddeb611fa3767cb015a5df36988a1cf8373dd30541d8fbdd5478efefb7670cd533cf53d9894d5961c98eaaf1374ccfe46b6b0f0db3fa
|
data/lib/lame_generator.rb
CHANGED
@@ -24,16 +24,22 @@ class LameGenerator
|
|
24
24
|
"Got any Stella?",
|
25
25
|
"SHOWERS OF KISSES!",
|
26
26
|
"Waking up next to you is the best way of waking up",
|
27
|
-
"
|
27
|
+
"Mornings are much more fun with you around",
|
28
28
|
"You have delightful arms, especially when they're wrapped around me",
|
29
29
|
"eeeeeeeeee",
|
30
30
|
"eeeEEEEEEEEEEEEEEeeeee!!!",
|
31
31
|
"EEEEEEEEEEEEEEEE!!!!!!!!!!",
|
32
32
|
"SQUISH!",
|
33
|
-
" <3 <3 <3 <3 Ice cream cones or hearts. Not really sure, either are good, WITH YOU!"
|
33
|
+
" <3 <3 <3 <3 Ice cream cones or hearts. Not really sure, either are good, WITH YOU!",
|
34
|
+
"YOU ARE THE BEST!",
|
35
|
+
"YOU ARE JUST INCREDIBLE!",
|
36
|
+
"YOU ARE AMAZING!",
|
37
|
+
"LETS DO A BIT OF THE SEX!",
|
38
|
+
"COLD BED DANCE!"
|
34
39
|
]
|
40
|
+
|
35
41
|
def self.go
|
36
42
|
num = LAMENESS.count
|
37
|
-
puts LAMENESS[num]
|
43
|
+
puts LAMENESS[rand(num)]
|
38
44
|
end
|
39
45
|
end
|