santas_little_helper 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/santas_little_helper.rb +8 -2
- metadata +1 -1
data/lib/santas_little_helper.rb
CHANGED
@@ -29,7 +29,10 @@ class TrueClass
|
|
29
29
|
1
|
30
30
|
end
|
31
31
|
def to_h
|
32
|
-
|
32
|
+
"yes"
|
33
|
+
end
|
34
|
+
def to_teenager
|
35
|
+
"Yeah, yeah. I've got something for you here."
|
33
36
|
end
|
34
37
|
end
|
35
38
|
class FalseClass
|
@@ -37,7 +40,10 @@ class FalseClass
|
|
37
40
|
0
|
38
41
|
end
|
39
42
|
def to_h
|
40
|
-
|
43
|
+
"no"
|
44
|
+
end
|
45
|
+
def to_teenager
|
46
|
+
"Can't you leave me alone? I don't have anything!"
|
41
47
|
end
|
42
48
|
end
|
43
49
|
|