waylon-wordle 0.1.1 → 0.1.2
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/.gitignore +1 -0
- data/.rubocop.yml +2 -0
- data/Gemfile.lock +26 -22
- data/data/vocabulary.json +14857 -0
- data/lib/waylon/wordle/solver.rb +1 -1
- data/lib/waylon/wordle/version.rb +1 -1
- data/lib/waylon/wordle.rb +25 -7
- data/scripts/release.sh +2 -0
- data/scripts/test.sh +2 -0
- metadata +3 -3
- data/data/answers.json +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2596ef4ec8693e71cfb5403ce693bbda6ea655b251e6e26323400ba2519fe6d8
|
|
4
|
+
data.tar.gz: 42dc06d83b8413e42c9593d4c1910ed867ec53318d0de63533c13b990f83b057
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48b6a455d30619785d1720b2d0c97b5c0dbb62758c4f4e0e9f158e01a5baedcfeccef6e76e3a5141814fc441d412cd734acb8b9863c04348942aa003eaf5ee63
|
|
7
|
+
data.tar.gz: 6977cf0a5de54f7044e4f4698ad60557bd9f035c4454a9e5a4945347a96248b445d0ed98c46a287ccf332f7cb18fc2acddf8c019f72920182d1f64cc062e52c4
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
waylon-wordle (0.1.
|
|
4
|
+
waylon-wordle (0.1.2)
|
|
5
5
|
waylon-core (~> 0.1)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
addressable (2.8.
|
|
11
|
-
public_suffix (>= 2.0.2, <
|
|
10
|
+
addressable (2.8.4)
|
|
11
|
+
public_suffix (>= 2.0.2, < 6.0)
|
|
12
12
|
ast (2.4.2)
|
|
13
|
-
concurrent-ruby (1.
|
|
13
|
+
concurrent-ruby (1.2.2)
|
|
14
|
+
connection_pool (2.2.5)
|
|
14
15
|
diff-lcs (1.5.0)
|
|
15
16
|
docile (1.4.0)
|
|
16
|
-
faraday (1.10.
|
|
17
|
+
faraday (1.10.3)
|
|
17
18
|
faraday-em_http (~> 1.0)
|
|
18
19
|
faraday-em_synchrony (~> 1.0)
|
|
19
20
|
faraday-excon (~> 1.1)
|
|
@@ -37,34 +38,37 @@ GEM
|
|
|
37
38
|
faraday-rack (1.0.0)
|
|
38
39
|
faraday-retry (1.0.3)
|
|
39
40
|
ffi (1.15.5)
|
|
40
|
-
i18n (1.
|
|
41
|
+
i18n (1.14.1)
|
|
41
42
|
concurrent-ruby (~> 1.0)
|
|
42
|
-
json (2.6.
|
|
43
|
+
json (2.6.3)
|
|
43
44
|
moneta (1.5.1)
|
|
44
45
|
mono_logger (1.1.1)
|
|
45
46
|
multi_json (1.15.0)
|
|
46
|
-
multipart-post (2.
|
|
47
|
-
mustermann (
|
|
47
|
+
multipart-post (2.3.0)
|
|
48
|
+
mustermann (2.0.2)
|
|
48
49
|
ruby2_keywords (~> 0.0.1)
|
|
49
50
|
nio4r (2.5.8)
|
|
50
51
|
parallel (1.22.1)
|
|
51
52
|
parser (3.1.2.0)
|
|
52
53
|
ast (~> 2.4.1)
|
|
53
|
-
public_suffix (
|
|
54
|
-
puma (5.6.
|
|
54
|
+
public_suffix (5.0.1)
|
|
55
|
+
puma (5.6.5)
|
|
55
56
|
nio4r (~> 2.0)
|
|
56
|
-
rack (2.2.
|
|
57
|
-
rack-protection (2.2.
|
|
57
|
+
rack (2.2.6.2)
|
|
58
|
+
rack-protection (2.2.4)
|
|
58
59
|
rack
|
|
59
60
|
rainbow (3.1.1)
|
|
60
61
|
rake (13.0.6)
|
|
61
62
|
rbnacl (7.1.1)
|
|
62
63
|
ffi
|
|
63
|
-
redis (
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
redis (5.0.2)
|
|
65
|
+
redis-client (~> 0.7)
|
|
66
|
+
redis-client (0.7.1)
|
|
67
|
+
connection_pool
|
|
68
|
+
redis-namespace (1.9.0)
|
|
69
|
+
redis (>= 4)
|
|
66
70
|
regexp_parser (2.5.0)
|
|
67
|
-
resque (2.
|
|
71
|
+
resque (2.3.0)
|
|
68
72
|
mono_logger (~> 1.0)
|
|
69
73
|
multi_json (~> 1.0)
|
|
70
74
|
redis-namespace (~> 1.6)
|
|
@@ -106,14 +110,14 @@ GEM
|
|
|
106
110
|
simplecov_json_formatter (~> 0.1)
|
|
107
111
|
simplecov-html (0.12.3)
|
|
108
112
|
simplecov_json_formatter (0.1.4)
|
|
109
|
-
sinatra (2.2.
|
|
110
|
-
mustermann (~>
|
|
113
|
+
sinatra (2.2.4)
|
|
114
|
+
mustermann (~> 2.0)
|
|
111
115
|
rack (~> 2.2)
|
|
112
|
-
rack-protection (= 2.2.
|
|
116
|
+
rack-protection (= 2.2.4)
|
|
113
117
|
tilt (~> 2.0)
|
|
114
|
-
tilt (2.0
|
|
118
|
+
tilt (2.1.0)
|
|
115
119
|
unicode-display_width (2.1.0)
|
|
116
|
-
waylon-core (0.
|
|
120
|
+
waylon-core (0.2.6)
|
|
117
121
|
addressable (~> 2.8)
|
|
118
122
|
faraday (~> 1.8)
|
|
119
123
|
i18n (~> 1.8)
|