cheddar 0.0.2 → 0.0.3
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/cheddar.rb +7 -6
- metadata +2 -1
data/lib/cheddar.rb
CHANGED
|
@@ -11,6 +11,7 @@ class String
|
|
|
11
11
|
slang = {
|
|
12
12
|
bacon: 1,
|
|
13
13
|
benjamin: 100,
|
|
14
|
+
'big ones' => 1000,
|
|
14
15
|
bills: 1,
|
|
15
16
|
bread: 1,
|
|
16
17
|
buck: 1,
|
|
@@ -19,16 +20,20 @@ class String
|
|
|
19
20
|
cheddar: 1,
|
|
20
21
|
cheese: 1,
|
|
21
22
|
clams: 1,
|
|
23
|
+
'c-note' => 100,
|
|
24
|
+
'dead presidents' => 1,
|
|
22
25
|
dolla: 1,
|
|
23
26
|
dollar: 1,
|
|
27
|
+
'double sawbuck' => 20,
|
|
24
28
|
dough: 1,
|
|
25
29
|
fin: 5,
|
|
26
30
|
green: 1,
|
|
27
31
|
greenback: 1,
|
|
28
32
|
jackson: 100,
|
|
29
33
|
kale: 1,
|
|
30
|
-
large:
|
|
34
|
+
large: 1000,
|
|
31
35
|
lettuce: 1,
|
|
36
|
+
'long green' => 1,
|
|
32
37
|
loot: 1,
|
|
33
38
|
moolah: 1,
|
|
34
39
|
paper: 1,
|
|
@@ -37,11 +42,7 @@ class String
|
|
|
37
42
|
sawbuck: 10,
|
|
38
43
|
scratch: 1,
|
|
39
44
|
scrip: 1,
|
|
40
|
-
twankie: 100
|
|
41
|
-
'c-note' => 100,
|
|
42
|
-
'dead presidents' => 1,
|
|
43
|
-
'double sawbuck' => 20,
|
|
44
|
-
'long green' => 1
|
|
45
|
+
twankie: 100
|
|
45
46
|
}
|
|
46
47
|
mapping.merge! slang
|
|
47
48
|
end
|
metadata
CHANGED