word_count_analyzer 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.
- checksums.yaml +4 -4
- data/lib/word_count_analyzer/contraction.rb +0 -22
- data/lib/word_count_analyzer/version.rb +1 -1
- 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: 09455e54fa667513643f84242cd8cfb25ce88390
|
|
4
|
+
data.tar.gz: d2c92fc67f2929e4e1677ab124b00cc1652a9e8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6eb0902d9ba87cc86063dc20e997bcd184905dad77b0ca9b30dde8be25af2916161cb721892d38e1d31937801cd20269b1d5dedd2255882b5a9c4c684362ecd2
|
|
7
|
+
data.tar.gz: d4d3eb2b2bfb51602f1946c6b8d5cd31a1d8ad3d8d15c60ec2cbb05e3591e4ff45c71eb6b3b7e73c75ca2addddd9b392b457fba04cd212bbeaa2cd03735bf383
|
|
@@ -5,74 +5,52 @@ module WordCountAnalyzer
|
|
|
5
5
|
"i'll" => "I will",
|
|
6
6
|
"i'd" => "I would",
|
|
7
7
|
"i've" => "I have",
|
|
8
|
-
"i'd" => "I had",
|
|
9
8
|
"you're" => "you are",
|
|
10
9
|
"you'll" => "you will",
|
|
11
10
|
"you'd" => "you would",
|
|
12
11
|
"you've" => "you have",
|
|
13
|
-
"you'd" => "you had",
|
|
14
12
|
"he's" => "he is",
|
|
15
13
|
"he'll" => "he will",
|
|
16
14
|
"he'd" => "he would",
|
|
17
|
-
"he's" => "he has",
|
|
18
|
-
"he'd" => "he had",
|
|
19
15
|
"she's" => "she is",
|
|
20
16
|
"she'll" => "she will",
|
|
21
17
|
"she'd" => "she would",
|
|
22
|
-
"she's" => "she has",
|
|
23
|
-
"she'd" => "she had",
|
|
24
18
|
"it's" => "it is",
|
|
25
19
|
"'tis" => "it is",
|
|
26
20
|
"it'll" => "it will",
|
|
27
21
|
"it'd" => "it would",
|
|
28
|
-
"it's" => "it has",
|
|
29
|
-
"it'd" => "it had",
|
|
30
22
|
"we're" => "we are",
|
|
31
23
|
"we'll" => "we will",
|
|
32
24
|
"we'd" => "we would",
|
|
33
25
|
"we've" => "we have",
|
|
34
|
-
"we'd" => "we had",
|
|
35
26
|
"they're" => "they are",
|
|
36
27
|
"they'll" => "they will",
|
|
37
28
|
"they'd" => "they would",
|
|
38
29
|
"they've" => "they have",
|
|
39
|
-
"they'd" => "they had",
|
|
40
30
|
"that's" => "that is",
|
|
41
31
|
"that'll" => "that will",
|
|
42
32
|
"that'd" => "that would",
|
|
43
|
-
"that's" => "that has",
|
|
44
|
-
"that'd" => "that had",
|
|
45
33
|
"who's" => "who is",
|
|
46
34
|
"who'll" => "who will",
|
|
47
35
|
"who'd" => "who would",
|
|
48
|
-
"who's" => "who has",
|
|
49
|
-
"who'd" => "who had",
|
|
50
36
|
"what's" => "what is",
|
|
51
37
|
"what're" => "what are",
|
|
52
38
|
"what'll" => "what will",
|
|
53
39
|
"what'd" => "what would",
|
|
54
40
|
"what's" => "what has",
|
|
55
|
-
"what'd" => "what had",
|
|
56
41
|
"where's" => "where is",
|
|
57
42
|
"where'll" => "where will",
|
|
58
43
|
"where'd" => "where would",
|
|
59
|
-
"where's" => "where has",
|
|
60
|
-
"where'd" => "where had",
|
|
61
44
|
"when's" => "when is",
|
|
62
45
|
"when'll" => "when will",
|
|
63
46
|
"when'd" => "when would",
|
|
64
|
-
"when's" => "when has",
|
|
65
|
-
"when'd" => "when had",
|
|
66
47
|
"why's" => "why is",
|
|
67
48
|
"why'll" => "why will",
|
|
68
49
|
"why'd" => "why would",
|
|
69
|
-
"why's" => "why has",
|
|
70
|
-
"why'd" => "why had",
|
|
71
50
|
"how's" => "how is",
|
|
72
51
|
"how'll" => "how will",
|
|
73
52
|
"how'd" => "how would",
|
|
74
53
|
"how's" => "how has",
|
|
75
|
-
"how'd" => "how had",
|
|
76
54
|
"she'd've" => "she would have",
|
|
77
55
|
"'tisn't" => "it is not",
|
|
78
56
|
"isn't" => "is not",
|