pilipinas 0.1.2 → 1.0.0
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/Gemfile +12 -7
- data/Gemfile.lock +321 -168
- data/README.md +239 -2
- data/Rakefile +2 -0
- data/bin/console +11 -8
- data/lib/generators/pilipinas/migration_generator.rb +15 -10
- data/lib/generators/templates/migration.rb +33 -25
- data/lib/pilipinas/barangay.rb +16 -2
- data/lib/pilipinas/base.rb +219 -50
- data/lib/pilipinas/cache.rb +61 -0
- data/lib/pilipinas/city.rb +21 -3
- data/lib/pilipinas/db/barangay.rb +14 -2
- data/lib/pilipinas/db/city.rb +18 -2
- data/lib/pilipinas/db/concerns/static_record.rb +117 -0
- data/lib/pilipinas/db/province.rb +18 -2
- data/lib/pilipinas/db/region.rb +14 -1
- data/lib/pilipinas/loader.rb +85 -6
- data/lib/pilipinas/province.rb +21 -3
- data/lib/pilipinas/railtie.rb +12 -5
- data/lib/pilipinas/region.rb +22 -3
- data/lib/pilipinas/version.rb +6 -1
- data/lib/pilipinas.rb +48 -6
- data/lib/tasks/pilipinas_tasks.rake +7 -1
- data/pilipinas.gemspec +44 -38
- metadata +71 -46
- data/.gitignore +0 -14
- data/.rspec +0 -3
- data/.travis.yml +0 -7
- data/Guardfile +0 -75
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a0d4e9bce22ec277d0dc496465c5f78ac9f6470c8ea579832191b2bcecba289
|
|
4
|
+
data.tar.gz: 188a8a2c3d853c01da1eaa3d0609688b0a6612cd0db46fe600b5754d58864753
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4d3910367c067e84aaae374d27a39de44acaf1eba461150f84e019f8e9e0f6fb0ff2341fe44101e4cfb3c7c3ac0b7a23495d8d285adf7ad53af96bccc51285e
|
|
7
|
+
data.tar.gz: f17c36621d5afce588b5bcf95eea17cea461abb0d5c2dfc6caac8b8905c5e9fe71827f33e469dc3616ca40f188f030544776393c921af7e6fa40f0d9339af658
|
data/Gemfile
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
source 'https://rubygems.org'
|
|
4
4
|
|
|
5
5
|
# Specify your gem's dependencies in pilipinas.gemspec
|
|
6
6
|
gemspec
|
|
7
7
|
|
|
8
|
-
group :test do
|
|
9
|
-
gem '
|
|
8
|
+
group :development, :test do
|
|
9
|
+
gem 'debug'
|
|
10
10
|
gem 'dotenv'
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
group :test do
|
|
11
14
|
gem 'generator_spec'
|
|
12
|
-
gem 'rubocop'
|
|
13
|
-
gem '
|
|
14
|
-
gem '
|
|
15
|
+
gem 'rubocop', '~> 1.65', require: false
|
|
16
|
+
gem 'rubocop-rake'
|
|
17
|
+
gem 'rubocop-rspec', '~> 3.0', require: false
|
|
18
|
+
gem 'simplecov', '~> 0.22', require: false
|
|
19
|
+
gem 'simplecov-console', '~> 0.9', require: false
|
|
15
20
|
gem 'webmock'
|
|
16
21
|
end
|
data/Gemfile.lock
CHANGED
|
@@ -1,203 +1,356 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
pilipinas (0.
|
|
5
|
-
yaml_db
|
|
4
|
+
pilipinas (1.0.0)
|
|
6
5
|
|
|
7
6
|
GEM
|
|
8
7
|
remote: https://rubygems.org/
|
|
9
8
|
specs:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
actionview (= 5.2.3)
|
|
17
|
-
activejob (= 5.2.3)
|
|
18
|
-
mail (~> 2.5, >= 2.5.4)
|
|
19
|
-
rails-dom-testing (~> 2.0)
|
|
20
|
-
actionpack (5.2.3)
|
|
21
|
-
actionview (= 5.2.3)
|
|
22
|
-
activesupport (= 5.2.3)
|
|
23
|
-
rack (~> 2.0)
|
|
9
|
+
actionpack (8.1.3)
|
|
10
|
+
actionview (= 8.1.3)
|
|
11
|
+
activesupport (= 8.1.3)
|
|
12
|
+
nokogiri (>= 1.8.5)
|
|
13
|
+
rack (>= 2.2.4)
|
|
14
|
+
rack-session (>= 1.0.1)
|
|
24
15
|
rack-test (>= 0.6.3)
|
|
25
|
-
rails-dom-testing (~> 2.
|
|
26
|
-
rails-html-sanitizer (~> 1.
|
|
27
|
-
|
|
28
|
-
|
|
16
|
+
rails-dom-testing (~> 2.2)
|
|
17
|
+
rails-html-sanitizer (~> 1.6)
|
|
18
|
+
useragent (~> 0.16)
|
|
19
|
+
actionview (8.1.3)
|
|
20
|
+
activesupport (= 8.1.3)
|
|
29
21
|
builder (~> 3.1)
|
|
30
|
-
erubi (~> 1.
|
|
31
|
-
rails-dom-testing (~> 2.
|
|
32
|
-
rails-html-sanitizer (~> 1.
|
|
33
|
-
|
|
34
|
-
activesupport (=
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
activesupport (=
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
tzinfo (~>
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
ast (2.4.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
22
|
+
erubi (~> 1.11)
|
|
23
|
+
rails-dom-testing (~> 2.2)
|
|
24
|
+
rails-html-sanitizer (~> 1.6)
|
|
25
|
+
activemodel (8.1.3)
|
|
26
|
+
activesupport (= 8.1.3)
|
|
27
|
+
activerecord (8.1.3)
|
|
28
|
+
activemodel (= 8.1.3)
|
|
29
|
+
activesupport (= 8.1.3)
|
|
30
|
+
timeout (>= 0.4.0)
|
|
31
|
+
activesupport (8.1.3)
|
|
32
|
+
base64
|
|
33
|
+
bigdecimal
|
|
34
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
35
|
+
connection_pool (>= 2.2.5)
|
|
36
|
+
drb
|
|
37
|
+
i18n (>= 1.6, < 2)
|
|
38
|
+
json
|
|
39
|
+
logger (>= 1.4.2)
|
|
40
|
+
minitest (>= 5.1)
|
|
41
|
+
securerandom (>= 0.3)
|
|
42
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
43
|
+
uri (>= 0.13.1)
|
|
44
|
+
addressable (2.9.0)
|
|
45
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
46
|
+
ansi (1.6.0)
|
|
47
|
+
ast (2.4.3)
|
|
48
|
+
base64 (0.3.0)
|
|
49
|
+
bigdecimal (4.1.2)
|
|
50
|
+
builder (3.3.0)
|
|
51
|
+
concurrent-ruby (1.3.6)
|
|
52
|
+
connection_pool (3.0.2)
|
|
53
|
+
crack (1.0.1)
|
|
54
|
+
bigdecimal
|
|
55
|
+
rexml
|
|
56
|
+
crass (1.0.6)
|
|
57
|
+
date (3.5.1)
|
|
58
|
+
debug (1.11.1)
|
|
59
|
+
irb (~> 1.10)
|
|
60
|
+
reline (>= 0.3.8)
|
|
61
|
+
diff-lcs (1.6.2)
|
|
62
|
+
docile (1.4.1)
|
|
63
|
+
dotenv (3.2.0)
|
|
64
|
+
drb (2.2.3)
|
|
65
|
+
erb (6.0.4)
|
|
66
|
+
erubi (1.13.1)
|
|
67
|
+
generator_spec (0.10.0)
|
|
67
68
|
activesupport (>= 3.0.0)
|
|
68
69
|
railties (>= 3.0.0)
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
hashdiff (0.4.0)
|
|
72
|
-
i18n (1.6.0)
|
|
70
|
+
hashdiff (1.2.1)
|
|
71
|
+
i18n (1.14.8)
|
|
73
72
|
concurrent-ruby (~> 1.0)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
io-console (0.8.2)
|
|
74
|
+
irb (1.18.0)
|
|
75
|
+
pp (>= 0.6.0)
|
|
76
|
+
prism (>= 1.3.0)
|
|
77
|
+
rdoc (>= 4.0.0)
|
|
78
|
+
reline (>= 0.4.2)
|
|
79
|
+
json (2.19.5)
|
|
80
|
+
language_server-protocol (3.17.0.5)
|
|
81
|
+
lint_roller (1.1.0)
|
|
82
|
+
logger (1.7.0)
|
|
83
|
+
loofah (2.25.1)
|
|
77
84
|
crass (~> 1.0.2)
|
|
78
|
-
nokogiri (>= 1.
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
85
|
+
nokogiri (>= 1.12.0)
|
|
86
|
+
minitest (6.0.6)
|
|
87
|
+
drb (~> 2.0)
|
|
88
|
+
prism (~> 1.5)
|
|
89
|
+
nokogiri (1.19.3-aarch64-linux-gnu)
|
|
90
|
+
racc (~> 1.4)
|
|
91
|
+
nokogiri (1.19.3-aarch64-linux-musl)
|
|
92
|
+
racc (~> 1.4)
|
|
93
|
+
nokogiri (1.19.3-arm-linux-gnu)
|
|
94
|
+
racc (~> 1.4)
|
|
95
|
+
nokogiri (1.19.3-arm-linux-musl)
|
|
96
|
+
racc (~> 1.4)
|
|
97
|
+
nokogiri (1.19.3-arm64-darwin)
|
|
98
|
+
racc (~> 1.4)
|
|
99
|
+
nokogiri (1.19.3-x86_64-darwin)
|
|
100
|
+
racc (~> 1.4)
|
|
101
|
+
nokogiri (1.19.3-x86_64-linux-gnu)
|
|
102
|
+
racc (~> 1.4)
|
|
103
|
+
nokogiri (1.19.3-x86_64-linux-musl)
|
|
104
|
+
racc (~> 1.4)
|
|
105
|
+
parallel (2.1.0)
|
|
106
|
+
parser (3.3.11.1)
|
|
107
|
+
ast (~> 2.4.1)
|
|
108
|
+
racc
|
|
109
|
+
pp (0.6.3)
|
|
110
|
+
prettyprint
|
|
111
|
+
prettyprint (0.2.0)
|
|
112
|
+
prism (1.9.0)
|
|
113
|
+
psych (5.3.1)
|
|
114
|
+
date
|
|
115
|
+
stringio
|
|
116
|
+
public_suffix (7.0.5)
|
|
117
|
+
racc (1.8.1)
|
|
118
|
+
rack (3.2.6)
|
|
119
|
+
rack-session (2.1.2)
|
|
120
|
+
base64 (>= 0.1.0)
|
|
121
|
+
rack (>= 3.0.0)
|
|
122
|
+
rack-test (2.2.0)
|
|
123
|
+
rack (>= 1.3)
|
|
124
|
+
rackup (2.3.1)
|
|
125
|
+
rack (>= 3)
|
|
126
|
+
rails-dom-testing (2.3.0)
|
|
127
|
+
activesupport (>= 5.0.0)
|
|
128
|
+
minitest
|
|
113
129
|
nokogiri (>= 1.6)
|
|
114
|
-
rails-html-sanitizer (1.0
|
|
115
|
-
loofah (~> 2.
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
130
|
+
rails-html-sanitizer (1.7.0)
|
|
131
|
+
loofah (~> 2.25)
|
|
132
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
133
|
+
railties (8.1.3)
|
|
134
|
+
actionpack (= 8.1.3)
|
|
135
|
+
activesupport (= 8.1.3)
|
|
136
|
+
irb (~> 1.13)
|
|
137
|
+
rackup (>= 1.0.0)
|
|
138
|
+
rake (>= 12.2)
|
|
139
|
+
thor (~> 1.0, >= 1.2.2)
|
|
140
|
+
tsort (>= 0.2)
|
|
141
|
+
zeitwerk (~> 2.6)
|
|
142
|
+
rainbow (3.1.1)
|
|
143
|
+
rake (13.4.2)
|
|
144
|
+
rdoc (7.2.0)
|
|
145
|
+
erb
|
|
146
|
+
psych (>= 4.0.0)
|
|
147
|
+
tsort
|
|
148
|
+
regexp_parser (2.12.0)
|
|
149
|
+
reline (0.6.3)
|
|
150
|
+
io-console (~> 0.5)
|
|
151
|
+
rexml (3.4.4)
|
|
152
|
+
rspec (3.13.2)
|
|
153
|
+
rspec-core (~> 3.13.0)
|
|
154
|
+
rspec-expectations (~> 3.13.0)
|
|
155
|
+
rspec-mocks (~> 3.13.0)
|
|
156
|
+
rspec-core (3.13.6)
|
|
157
|
+
rspec-support (~> 3.13.0)
|
|
158
|
+
rspec-expectations (3.13.5)
|
|
131
159
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
132
|
-
rspec-support (~> 3.
|
|
133
|
-
rspec-mocks (3.8
|
|
160
|
+
rspec-support (~> 3.13.0)
|
|
161
|
+
rspec-mocks (3.13.8)
|
|
134
162
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
135
|
-
rspec-support (~> 3.
|
|
136
|
-
rspec-support (3.
|
|
137
|
-
rubocop (
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
163
|
+
rspec-support (~> 3.13.0)
|
|
164
|
+
rspec-support (3.13.7)
|
|
165
|
+
rubocop (1.86.1)
|
|
166
|
+
json (~> 2.3)
|
|
167
|
+
language_server-protocol (~> 3.17.0.2)
|
|
168
|
+
lint_roller (~> 1.1.0)
|
|
169
|
+
parallel (>= 1.10)
|
|
170
|
+
parser (>= 3.3.0.2)
|
|
141
171
|
rainbow (>= 2.2.2, < 4.0)
|
|
172
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
173
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
142
174
|
ruby-progressbar (~> 1.7)
|
|
143
|
-
unicode-display_width (>=
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
175
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
176
|
+
rubocop-ast (1.49.1)
|
|
177
|
+
parser (>= 3.3.7.2)
|
|
178
|
+
prism (~> 1.7)
|
|
179
|
+
rubocop-rake (0.7.1)
|
|
180
|
+
lint_roller (~> 1.1)
|
|
181
|
+
rubocop (>= 1.72.1)
|
|
182
|
+
rubocop-rspec (3.9.0)
|
|
183
|
+
lint_roller (~> 1.1)
|
|
184
|
+
rubocop (~> 1.81)
|
|
185
|
+
ruby-progressbar (1.13.0)
|
|
186
|
+
securerandom (0.4.1)
|
|
187
|
+
shoulda-matchers (6.5.0)
|
|
188
|
+
activesupport (>= 5.2.0)
|
|
189
|
+
simplecov (0.22.0)
|
|
149
190
|
docile (~> 1.1)
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
simplecov-console (0.5
|
|
191
|
+
simplecov-html (~> 0.11)
|
|
192
|
+
simplecov_json_formatter (~> 0.1)
|
|
193
|
+
simplecov-console (0.9.5)
|
|
153
194
|
ansi
|
|
154
195
|
simplecov
|
|
155
196
|
terminal-table
|
|
156
|
-
simplecov-html (0.
|
|
157
|
-
|
|
197
|
+
simplecov-html (0.13.2)
|
|
198
|
+
simplecov_json_formatter (0.1.4)
|
|
199
|
+
sqlite3 (2.9.4-aarch64-linux-gnu)
|
|
200
|
+
sqlite3 (2.9.4-aarch64-linux-musl)
|
|
201
|
+
sqlite3 (2.9.4-arm-linux-gnu)
|
|
202
|
+
sqlite3 (2.9.4-arm-linux-musl)
|
|
203
|
+
sqlite3 (2.9.4-arm64-darwin)
|
|
204
|
+
sqlite3 (2.9.4-x86_64-darwin)
|
|
205
|
+
sqlite3 (2.9.4-x86_64-linux-gnu)
|
|
206
|
+
sqlite3 (2.9.4-x86_64-linux-musl)
|
|
207
|
+
stringio (3.2.0)
|
|
208
|
+
terminal-table (4.0.0)
|
|
209
|
+
unicode-display_width (>= 1.1.1, < 4)
|
|
210
|
+
thor (1.5.0)
|
|
211
|
+
timeout (0.6.1)
|
|
212
|
+
tsort (0.2.0)
|
|
213
|
+
tzinfo (2.0.6)
|
|
158
214
|
concurrent-ruby (~> 1.0)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
unicode-display_width (~> 1.1, >= 1.1.1)
|
|
167
|
-
thor (0.20.3)
|
|
168
|
-
thread_safe (0.3.6)
|
|
169
|
-
tzinfo (1.2.5)
|
|
170
|
-
thread_safe (~> 0.1)
|
|
171
|
-
unicode-display_width (1.6.0)
|
|
172
|
-
webmock (3.6.0)
|
|
173
|
-
addressable (>= 2.3.6)
|
|
215
|
+
unicode-display_width (3.2.0)
|
|
216
|
+
unicode-emoji (~> 4.1)
|
|
217
|
+
unicode-emoji (4.2.0)
|
|
218
|
+
uri (1.1.1)
|
|
219
|
+
useragent (0.16.11)
|
|
220
|
+
webmock (3.26.2)
|
|
221
|
+
addressable (>= 2.8.0)
|
|
174
222
|
crack (>= 0.3.2)
|
|
175
223
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
176
|
-
|
|
177
|
-
websocket-extensions (>= 0.1.0)
|
|
178
|
-
websocket-extensions (0.1.4)
|
|
179
|
-
yaml_db (0.7.0)
|
|
180
|
-
rails (>= 3.0)
|
|
181
|
-
rake (>= 0.8.7)
|
|
224
|
+
zeitwerk (2.7.5)
|
|
182
225
|
|
|
183
226
|
PLATFORMS
|
|
184
|
-
|
|
227
|
+
aarch64-linux-gnu
|
|
228
|
+
aarch64-linux-musl
|
|
229
|
+
arm-linux-gnu
|
|
230
|
+
arm-linux-musl
|
|
231
|
+
arm64-darwin
|
|
232
|
+
x86_64-darwin
|
|
233
|
+
x86_64-linux-gnu
|
|
234
|
+
x86_64-linux-musl
|
|
185
235
|
|
|
186
236
|
DEPENDENCIES
|
|
187
|
-
activerecord
|
|
188
|
-
|
|
189
|
-
byebug
|
|
237
|
+
activerecord (~> 8.0)
|
|
238
|
+
debug
|
|
190
239
|
dotenv
|
|
191
240
|
generator_spec
|
|
192
241
|
pilipinas!
|
|
193
|
-
rake (~>
|
|
194
|
-
rspec (~> 3.
|
|
195
|
-
rubocop
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
242
|
+
rake (~> 13.2)
|
|
243
|
+
rspec (~> 3.13)
|
|
244
|
+
rubocop (~> 1.65)
|
|
245
|
+
rubocop-rake
|
|
246
|
+
rubocop-rspec (~> 3.0)
|
|
247
|
+
shoulda-matchers (~> 6.0)
|
|
248
|
+
simplecov (~> 0.22)
|
|
249
|
+
simplecov-console (~> 0.9)
|
|
250
|
+
sqlite3 (~> 2.0)
|
|
200
251
|
webmock
|
|
201
252
|
|
|
253
|
+
CHECKSUMS
|
|
254
|
+
actionpack (8.1.3) sha256=af998cae4d47c5d581a2cc363b5c77eb718b7c4b45748d81b1887b25621c29a3
|
|
255
|
+
actionview (8.1.3) sha256=1347c88c7f3edb38100c5ce0e9fb5e62d7755f3edc1b61cce2eb0b2c6ea2fd5d
|
|
256
|
+
activemodel (8.1.3) sha256=90c05cbe4cef3649b8f79f13016191ea94c4525ce4a5c0fb7ef909c4b91c8219
|
|
257
|
+
activerecord (8.1.3) sha256=8003be7b2466ba0a2a670e603eeb0a61dd66058fccecfc49901e775260ac70ab
|
|
258
|
+
activesupport (8.1.3) sha256=21a5e0dfbd4c3ddd9e1317ec6a4d782fa226e7867dc70b0743acda81a1dca20e
|
|
259
|
+
addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
|
|
260
|
+
ansi (1.6.0) sha256=ac9ea0c0ea8d32fb4e271348e609963ac78882f34b73836c2a02b3622e666658
|
|
261
|
+
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
262
|
+
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
|
|
263
|
+
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
|
|
264
|
+
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
|
|
265
|
+
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
|
|
266
|
+
connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
|
|
267
|
+
crack (1.0.1) sha256=ff4a10390cd31d66440b7524eb1841874db86201d5b70032028553130b6d4c7e
|
|
268
|
+
crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
|
|
269
|
+
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
|
|
270
|
+
debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6
|
|
271
|
+
diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
|
|
272
|
+
docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
|
|
273
|
+
dotenv (3.2.0) sha256=e375b83121ea7ca4ce20f214740076129ab8514cd81378161f11c03853fe619d
|
|
274
|
+
drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
|
|
275
|
+
erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
|
|
276
|
+
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
|
277
|
+
generator_spec (0.10.0) sha256=4343152308dcfb30bba7583fc0e79acf8c626597686cfe3e9b168f6ab745b37a
|
|
278
|
+
hashdiff (1.2.1) sha256=9c079dbc513dfc8833ab59c0c2d8f230fa28499cc5efb4b8dd276cf931457cd1
|
|
279
|
+
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
|
|
280
|
+
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
281
|
+
irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
|
|
282
|
+
json (2.19.5) sha256=218a18553e4801d579ca7e0f5bc72bafd776d7397238a1fb4e74db5b0a812c59
|
|
283
|
+
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
|
|
284
|
+
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
285
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
|
286
|
+
loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
|
|
287
|
+
minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
|
|
288
|
+
nokogiri (1.19.3-aarch64-linux-gnu) sha256=46b89e5d7b9e844c2ee360794240c6ea2a4e6fa0c5892a4ed487db621224b639
|
|
289
|
+
nokogiri (1.19.3-aarch64-linux-musl) sha256=8392dfdcd21be7a94dbbe9ccc138dea01b97b24cb2dc02a114ca98bfb1d9a0b7
|
|
290
|
+
nokogiri (1.19.3-arm-linux-gnu) sha256=3919d5ffc334ad778a4a9eb88fda7dcb8b1fb58c8a52ac640c6dcd2f038e774f
|
|
291
|
+
nokogiri (1.19.3-arm-linux-musl) sha256=9ce1cb6346bb9c67b1550eb537aa183ead91e4b6eadb2f36ade02d8dd2a79fb6
|
|
292
|
+
nokogiri (1.19.3-arm64-darwin) sha256=71b9bd424b1b7abc18b05052a1a3cfd3627abdca62be280854cc411791357e42
|
|
293
|
+
nokogiri (1.19.3-x86_64-darwin) sha256=77f3fba57d46c53ab31e62fc6c28f705109d1bf6264356c76f132b2be5728d4d
|
|
294
|
+
nokogiri (1.19.3-x86_64-linux-gnu) sha256=2f5078620fe12e83669b5b17311b32532a8153d02eee7ad06948b926d6080976
|
|
295
|
+
nokogiri (1.19.3-x86_64-linux-musl) sha256=248c906d2166eca5efb56d52fdee5f9a1f51d69a72e2b64fdac647b4ce39ea3f
|
|
296
|
+
parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
|
|
297
|
+
parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
|
|
298
|
+
pilipinas (1.0.0)
|
|
299
|
+
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
|
|
300
|
+
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
|
|
301
|
+
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
302
|
+
psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
|
|
303
|
+
public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
|
|
304
|
+
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
305
|
+
rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
|
|
306
|
+
rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
|
|
307
|
+
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
|
|
308
|
+
rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
|
|
309
|
+
rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
|
|
310
|
+
rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
|
|
311
|
+
railties (8.1.3) sha256=913eb0e0cb520aac687ffd74916bd726d48fa21f47833c6292576ef6a286de22
|
|
312
|
+
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
313
|
+
rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
|
|
314
|
+
rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
|
|
315
|
+
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
|
|
316
|
+
reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
|
|
317
|
+
rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142
|
|
318
|
+
rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
|
|
319
|
+
rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
|
|
320
|
+
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
321
|
+
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
322
|
+
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
323
|
+
rubocop (1.86.1) sha256=44415f3f01d01a21e01132248d2fd0867572475b566ca188a0a42133a08d4531
|
|
324
|
+
rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
|
|
325
|
+
rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
|
|
326
|
+
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
|
|
327
|
+
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
328
|
+
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
|
|
329
|
+
shoulda-matchers (6.5.0) sha256=ef6b572b2bed1ac4aba6ab2c5ff345a24b6d055a93a3d1c3bfc86d9d499e3f44
|
|
330
|
+
simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
|
|
331
|
+
simplecov-console (0.9.5) sha256=b1108bcfff5f210143e2b8301698c367b01586f20d25a73e95475a5df6fc6ff6
|
|
332
|
+
simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
|
|
333
|
+
simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
|
|
334
|
+
sqlite3 (2.9.4-aarch64-linux-gnu) sha256=ecabed721e6eaad54601d2685f09029d90025efc8d931040dc89cb3f8a2080ec
|
|
335
|
+
sqlite3 (2.9.4-aarch64-linux-musl) sha256=ffb4255947fb54c8c3eeca97460c9702b40de91ce390455ef7367ca6a3929a31
|
|
336
|
+
sqlite3 (2.9.4-arm-linux-gnu) sha256=9ee2008b9fbec984c3c165b0d7eedd2bd2a415100b761bfa3a4c6fbec9208bf6
|
|
337
|
+
sqlite3 (2.9.4-arm-linux-musl) sha256=8dc1fe4da6977992cd62decf4a93ccf6cc2e124a5e6a340160d52092f70e837a
|
|
338
|
+
sqlite3 (2.9.4-arm64-darwin) sha256=1d5aad413a815d236e96d43f05a1acc600b6cd086800770342a3f9c2877499ff
|
|
339
|
+
sqlite3 (2.9.4-x86_64-darwin) sha256=f280c476e360b73e86165a5e59b72801385b4a6c3a47f8af5ecefb9d90bec17f
|
|
340
|
+
sqlite3 (2.9.4-x86_64-linux-gnu) sha256=537a3eda71b1df1336d0055cbebe55a7317c34870c192c7b6b9d8d0be6871847
|
|
341
|
+
sqlite3 (2.9.4-x86_64-linux-musl) sha256=3fc5e865b4be9a85d998203ef8d0c0fdcb92f20acf34a254346ff8a19088efec
|
|
342
|
+
stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
|
|
343
|
+
terminal-table (4.0.0) sha256=f504793203f8251b2ea7c7068333053f0beeea26093ec9962e62ea79f94301d2
|
|
344
|
+
thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
|
|
345
|
+
timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
|
|
346
|
+
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
|
|
347
|
+
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
|
348
|
+
unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
|
|
349
|
+
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
|
|
350
|
+
uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
|
|
351
|
+
useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
|
|
352
|
+
webmock (3.26.2) sha256=774556f2ea6371846cca68c01769b2eac0d134492d21f6d0ab5dd643965a4c90
|
|
353
|
+
zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd
|
|
354
|
+
|
|
202
355
|
BUNDLED WITH
|
|
203
|
-
|
|
356
|
+
4.0.6
|