pilipinas 1.1.3 → 1.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '069c53de29b6607d4f19d961e085870e474ee3f53e5a9950d5564211d05b7286'
4
- data.tar.gz: fbaa56417882627d836b445625b65fab4cd2077fc4f901019dc2c841b38f6c4f
3
+ metadata.gz: 3f589684748e745f2ed136578c85eda123d963349f642ee6d461355f12ec2c26
4
+ data.tar.gz: 70bf4a827229bf7349e825c08521df6d52f1cacadaa8a81ba0bbafcacabc34f6
5
5
  SHA512:
6
- metadata.gz: 9bf493ab7a8d154f11c17b992d93abb8695e3c92b9286a8be3c14d0aad1d95568f2abb5467cbb86416a082cfda21eda542103cffd0e039aae32bbe34d9b3575f
7
- data.tar.gz: a11da75e206b70b6c1fb8cee5f0e3f132ddaa74b10beb3a51e946271f415367511cddce3f6a9c307ba8eb46ba7fcd64f8094c5ca2fbf5604de3c5c86ee4cc395
6
+ metadata.gz: 3b4e1c90ba62c9bcb8c523b4f5e62a9a1548951d6602bfbbb3955d9a3c8da7d4701c49ad03457709386d02dfb38d1a6092a11bf09fbda9e6d6c8a4c3408e43a3
7
+ data.tar.gz: 9eab58a01401cd6baf12c6133d3782076cf612cff329dcbc33991756541e451fcfaa0ac3045f41196476b4372652b749d2239db1c662b9c0b27713dccbfa1404
data/CHANGELOG.md CHANGED
@@ -7,6 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [1.1.6] - 2026-08-13
11
+
12
+ ### Dependencies
13
+
14
+ - Updated Rails components (`actionpack`, `actionview`, `activemodel`, `activerecord`, `activesupport`, `railties`) to 8.1.3.1.
15
+ - Updated `erb` to 6.0.7, `io-console` to 0.9.2, `json` to 2.21.2, `rack` to 3.2.7, `rbs` to 4.1.3, `reline` to 0.7.0, `rubocop` to 1.89.0, `sqlite3` to 2.9.6, and `zeitwerk` to 2.8.3.
16
+
17
+ ---
18
+
19
+ ## [1.1.5] - 2026-07-28
20
+
21
+ ### Changed
22
+
23
+ - CI workflow now uses `actions/checkout@v7` and `codecov/codecov-action@v7`.
24
+ - CI now generates an LCOV coverage report (`coverage/lcov/pilipinas.lcov`) via `simplecov-lcov` and uploads it to Codecov alongside the existing HTML/console formatters.
25
+
26
+ ### Dependencies
27
+
28
+ - Updated `concurrent-ruby` to 1.3.8, `erb` to 6.0.6, `json` to 2.21.1, `loofah` to 2.25.2, `parser` to 3.3.12.0, `rbs` to 4.1.0, `rubocop` to 1.88.2, `rubocop-ast` to 1.50.0, `language_server-protocol` to 3.17.0.6, and `rails-html-sanitizer` to 1.7.1.
29
+ - Removed unused transitive dependencies (`date`, `psych`, `stringio`) no longer required by `rdoc`.
30
+
31
+ ---
32
+
33
+ ## [1.1.4] - 2026-06-26
34
+
35
+ ### Changed
36
+
37
+ - `rake pilipinas:load` now wraps the entire seed transaction in `ActiveRecord::Base.uncached` so a long-running Rails process cannot serve stale query-cache hits during seeding.
38
+ - `Loader` clears the per-connection query cache after every `bulk_insert` batch and in the `run` `ensure` block, preventing cached bind-values from accumulating across batches.
39
+ - Batch arrays are now cleared in-place (`batch.clear`) instead of being replaced by a new object, allowing Ruby's GC to reclaim the memory sooner.
40
+ - The full location records table is released in `run`'s `ensure` block so memory is freed even if an exception interrupts seeding.
41
+
42
+ ### Dependencies
43
+
44
+ - Updated `json` to 2.19.9.
45
+
46
+ ---
47
+
10
48
  ## [1.1.3] - 2026-06-13
11
49
 
12
50
  ### Fixed
@@ -111,6 +149,10 @@ Complete rewrite of the gem. Zero runtime dependencies.
111
149
  - Rails generator for migrations.
112
150
  - Railtie for automatic Rake task loading in Rails apps.
113
151
 
152
+ [1.1.6]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.1.5...v1.1.6
153
+ [1.1.5]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.1.4...v1.1.5
154
+ [1.1.4]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.1.3...v1.1.4
155
+ [1.1.3]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.1.2...v1.1.3
114
156
  [1.1.2]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.1.1...v1.1.2
115
157
  [1.1.1]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.1.0...v1.1.1
116
158
  [1.1.0]: https://github.com/denmarkmeralpis/pilipinas/compare/v1.0.0...v1.1.0
data/Gemfile CHANGED
@@ -17,5 +17,6 @@ group :test do
17
17
  gem 'rubocop-rspec', '~> 3.0', require: false
18
18
  gem 'simplecov', '~> 0.22', require: false
19
19
  gem 'simplecov-console', '~> 0.9', require: false
20
+ gem 'simplecov-lcov', '~> 0.8', require: false
20
21
  gem 'webmock'
21
22
  end
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pilipinas (1.1.3)
4
+ pilipinas (1.1.6)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- actionpack (8.1.3)
10
- actionview (= 8.1.3)
11
- activesupport (= 8.1.3)
9
+ actionpack (8.1.3.1)
10
+ actionview (= 8.1.3.1)
11
+ activesupport (= 8.1.3.1)
12
12
  nokogiri (>= 1.8.5)
13
13
  rack (>= 2.2.4)
14
14
  rack-session (>= 1.0.1)
@@ -16,19 +16,19 @@ GEM
16
16
  rails-dom-testing (~> 2.2)
17
17
  rails-html-sanitizer (~> 1.6)
18
18
  useragent (~> 0.16)
19
- actionview (8.1.3)
20
- activesupport (= 8.1.3)
19
+ actionview (8.1.3.1)
20
+ activesupport (= 8.1.3.1)
21
21
  builder (~> 3.1)
22
22
  erubi (~> 1.11)
23
23
  rails-dom-testing (~> 2.2)
24
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)
25
+ activemodel (8.1.3.1)
26
+ activesupport (= 8.1.3.1)
27
+ activerecord (8.1.3.1)
28
+ activemodel (= 8.1.3.1)
29
+ activesupport (= 8.1.3.1)
30
30
  timeout (>= 0.4.0)
31
- activesupport (8.1.3)
31
+ activesupport (8.1.3.1)
32
32
  base64
33
33
  bigdecimal
34
34
  concurrent-ruby (~> 1.0, >= 1.3.1)
@@ -48,13 +48,12 @@ GEM
48
48
  base64 (0.3.0)
49
49
  bigdecimal (4.1.2)
50
50
  builder (3.3.0)
51
- concurrent-ruby (1.3.6)
51
+ concurrent-ruby (1.3.8)
52
52
  connection_pool (3.0.2)
53
53
  crack (1.0.1)
54
54
  bigdecimal
55
55
  rexml
56
- crass (1.0.6)
57
- date (3.5.1)
56
+ crass (1.0.7)
58
57
  debug (1.11.1)
59
58
  irb (~> 1.10)
60
59
  reline (>= 0.3.8)
@@ -62,60 +61,57 @@ GEM
62
61
  docile (1.4.1)
63
62
  dotenv (3.2.0)
64
63
  drb (2.2.3)
65
- erb (6.0.4)
64
+ erb (6.0.7)
66
65
  erubi (1.13.1)
67
66
  generator_spec (0.10.0)
68
67
  activesupport (>= 3.0.0)
69
68
  railties (>= 3.0.0)
70
69
  hashdiff (1.2.1)
71
- i18n (1.14.8)
70
+ i18n (1.15.2)
72
71
  concurrent-ruby (~> 1.0)
73
- io-console (0.8.2)
72
+ io-console (0.9.2)
74
73
  irb (1.18.0)
75
74
  pp (>= 0.6.0)
76
75
  prism (>= 1.3.0)
77
76
  rdoc (>= 4.0.0)
78
77
  reline (>= 0.4.2)
79
- json (2.19.9)
80
- language_server-protocol (3.17.0.5)
78
+ json (2.21.2)
79
+ language_server-protocol (3.17.0.6)
81
80
  lint_roller (1.1.0)
82
81
  logger (1.7.0)
83
- loofah (2.25.1)
82
+ loofah (2.25.2)
84
83
  crass (~> 1.0.2)
85
84
  nokogiri (>= 1.12.0)
86
85
  minitest (6.0.6)
87
86
  drb (~> 2.0)
88
87
  prism (~> 1.5)
89
- nokogiri (1.19.3-aarch64-linux-gnu)
88
+ nokogiri (1.19.4-aarch64-linux-gnu)
90
89
  racc (~> 1.4)
91
- nokogiri (1.19.3-aarch64-linux-musl)
90
+ nokogiri (1.19.4-aarch64-linux-musl)
92
91
  racc (~> 1.4)
93
- nokogiri (1.19.3-arm-linux-gnu)
92
+ nokogiri (1.19.4-arm-linux-gnu)
94
93
  racc (~> 1.4)
95
- nokogiri (1.19.3-arm-linux-musl)
94
+ nokogiri (1.19.4-arm-linux-musl)
96
95
  racc (~> 1.4)
97
- nokogiri (1.19.3-arm64-darwin)
96
+ nokogiri (1.19.4-arm64-darwin)
98
97
  racc (~> 1.4)
99
- nokogiri (1.19.3-x86_64-darwin)
98
+ nokogiri (1.19.4-x86_64-darwin)
100
99
  racc (~> 1.4)
101
- nokogiri (1.19.3-x86_64-linux-gnu)
100
+ nokogiri (1.19.4-x86_64-linux-gnu)
102
101
  racc (~> 1.4)
103
- nokogiri (1.19.3-x86_64-linux-musl)
102
+ nokogiri (1.19.4-x86_64-linux-musl)
104
103
  racc (~> 1.4)
105
104
  parallel (2.1.0)
106
- parser (3.3.11.1)
105
+ parser (3.3.12.0)
107
106
  ast (~> 2.4.1)
108
107
  racc
109
- pp (0.6.3)
108
+ pp (0.6.4)
110
109
  prettyprint
111
110
  prettyprint (0.2.0)
112
111
  prism (1.9.0)
113
- psych (5.4.0)
114
- date
115
- stringio
116
112
  public_suffix (7.0.5)
117
113
  racc (1.8.1)
118
- rack (3.2.6)
114
+ rack (3.2.7)
119
115
  rack-session (2.1.2)
120
116
  base64 (>= 0.1.0)
121
117
  rack (>= 3.0.0)
@@ -127,12 +123,12 @@ GEM
127
123
  activesupport (>= 5.0.0)
128
124
  minitest
129
125
  nokogiri (>= 1.6)
130
- rails-html-sanitizer (1.7.0)
131
- loofah (~> 2.25)
126
+ rails-html-sanitizer (1.7.1)
127
+ loofah (~> 2.25, >= 2.25.2)
132
128
  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)
129
+ railties (8.1.3.1)
130
+ actionpack (= 8.1.3.1)
131
+ activesupport (= 8.1.3.1)
136
132
  irb (~> 1.13)
137
133
  rackup (>= 1.0.0)
138
134
  rake (>= 12.2)
@@ -141,12 +137,17 @@ GEM
141
137
  zeitwerk (~> 2.6)
142
138
  rainbow (3.1.1)
143
139
  rake (13.4.2)
144
- rdoc (7.2.0)
140
+ rbs (4.1.3)
141
+ logger
142
+ prism (>= 1.6.0)
143
+ tsort
144
+ rdoc (8.0.0)
145
145
  erb
146
- psych (>= 4.0.0)
146
+ prism (>= 1.6.0)
147
+ rbs (>= 4.0.0)
147
148
  tsort
148
149
  regexp_parser (2.12.0)
149
- reline (0.6.3)
150
+ reline (0.7.0)
150
151
  io-console (~> 0.5)
151
152
  rexml (3.4.4)
152
153
  rspec (3.13.2)
@@ -162,7 +163,7 @@ GEM
162
163
  diff-lcs (>= 1.2.0, < 2.0)
163
164
  rspec-support (~> 3.13.0)
164
165
  rspec-support (3.13.7)
165
- rubocop (1.87.0)
166
+ rubocop (1.89.0)
166
167
  json (~> 2.3)
167
168
  language_server-protocol (~> 3.17.0.2)
168
169
  lint_roller (~> 1.1.0)
@@ -173,7 +174,7 @@ GEM
173
174
  rubocop-ast (>= 1.49.0, < 2.0)
174
175
  ruby-progressbar (~> 1.7)
175
176
  unicode-display_width (>= 2.4.0, < 4.0)
176
- rubocop-ast (1.49.1)
177
+ rubocop-ast (1.50.0)
177
178
  parser (>= 3.3.7.2)
178
179
  prism (~> 1.7)
179
180
  rubocop-rake (0.7.1)
@@ -196,16 +197,16 @@ GEM
196
197
  simplecov
197
198
  terminal-table
198
199
  simplecov-html (0.13.2)
200
+ simplecov-lcov (0.9.0)
199
201
  simplecov_json_formatter (0.1.4)
200
- sqlite3 (2.9.5-aarch64-linux-gnu)
201
- sqlite3 (2.9.5-aarch64-linux-musl)
202
- sqlite3 (2.9.5-arm-linux-gnu)
203
- sqlite3 (2.9.5-arm-linux-musl)
204
- sqlite3 (2.9.5-arm64-darwin)
205
- sqlite3 (2.9.5-x86_64-darwin)
206
- sqlite3 (2.9.5-x86_64-linux-gnu)
207
- sqlite3 (2.9.5-x86_64-linux-musl)
208
- stringio (3.2.0)
202
+ sqlite3 (2.9.6-aarch64-linux-gnu)
203
+ sqlite3 (2.9.6-aarch64-linux-musl)
204
+ sqlite3 (2.9.6-arm-linux-gnu)
205
+ sqlite3 (2.9.6-arm-linux-musl)
206
+ sqlite3 (2.9.6-arm64-darwin)
207
+ sqlite3 (2.9.6-x86_64-darwin)
208
+ sqlite3 (2.9.6-x86_64-linux-gnu)
209
+ sqlite3 (2.9.6-x86_64-linux-musl)
209
210
  terminal-table (4.0.0)
210
211
  unicode-display_width (>= 1.1.1, < 4)
211
212
  thor (1.5.0)
@@ -222,7 +223,7 @@ GEM
222
223
  addressable (>= 2.8.0)
223
224
  crack (>= 0.3.2)
224
225
  hashdiff (>= 0.4.0, < 2.0.0)
225
- zeitwerk (2.8.2)
226
+ zeitwerk (2.8.3)
226
227
 
227
228
  PLATFORMS
228
229
  aarch64-linux-gnu
@@ -248,81 +249,81 @@ DEPENDENCIES
248
249
  shoulda-matchers (~> 6.0)
249
250
  simplecov (~> 0.22)
250
251
  simplecov-console (~> 0.9)
252
+ simplecov-lcov (~> 0.8)
251
253
  sqlite3 (~> 2.0)
252
254
  webmock
253
255
 
254
256
  CHECKSUMS
255
- actionpack (8.1.3) sha256=af998cae4d47c5d581a2cc363b5c77eb718b7c4b45748d81b1887b25621c29a3
256
- actionview (8.1.3) sha256=1347c88c7f3edb38100c5ce0e9fb5e62d7755f3edc1b61cce2eb0b2c6ea2fd5d
257
- activemodel (8.1.3) sha256=90c05cbe4cef3649b8f79f13016191ea94c4525ce4a5c0fb7ef909c4b91c8219
258
- activerecord (8.1.3) sha256=8003be7b2466ba0a2a670e603eeb0a61dd66058fccecfc49901e775260ac70ab
259
- activesupport (8.1.3) sha256=21a5e0dfbd4c3ddd9e1317ec6a4d782fa226e7867dc70b0743acda81a1dca20e
257
+ actionpack (8.1.3.1) sha256=974cb7154548e81f470b1b0f247b99cb38e87825899dca58610596e2817723d0
258
+ actionview (8.1.3.1) sha256=2da68b8414c47b43bfbed1ce69c5afe1c04f78c267aacb5660a4cab5ca12cfb6
259
+ activemodel (8.1.3.1) sha256=99cc02ce2faec371d14440949d85787ebd23a907c9baef0a9d4bcd4d21888f88
260
+ activerecord (8.1.3.1) sha256=0a2fb6c28f4938f6b013a3a549bec0a7e37d535f3dc8990e804bcc3258c0403b
261
+ activesupport (8.1.3.1) sha256=85458765f25ea48b9019c46b6bb3fa5683197bf4280d9f06710a6e8d7a831376
260
262
  addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
261
263
  ansi (1.6.0) sha256=ac9ea0c0ea8d32fb4e271348e609963ac78882f34b73836c2a02b3622e666658
262
264
  ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
263
265
  base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
264
266
  bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
265
267
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
266
- concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
268
+ concurrent-ruby (1.3.8) sha256=b2f1be836e968ccc78ccfce277ea79c72a88633f22306782c16ff23fb415d1e1
267
269
  connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
268
270
  crack (1.0.1) sha256=ff4a10390cd31d66440b7524eb1841874db86201d5b70032028553130b6d4c7e
269
- crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
270
- date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
271
+ crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295
271
272
  debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6
272
273
  diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
273
274
  docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
274
275
  dotenv (3.2.0) sha256=e375b83121ea7ca4ce20f214740076129ab8514cd81378161f11c03853fe619d
275
276
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
276
- erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
277
+ erb (6.0.7) sha256=c5ca6dc25b0ef974a44dc8f59fe847577122483b1968a38dec305c60bf91ee92
277
278
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
278
279
  generator_spec (0.10.0) sha256=4343152308dcfb30bba7583fc0e79acf8c626597686cfe3e9b168f6ab745b37a
279
280
  hashdiff (1.2.1) sha256=9c079dbc513dfc8833ab59c0c2d8f230fa28499cc5efb4b8dd276cf931457cd1
280
- i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
281
- io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
281
+ i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
282
+ io-console (0.9.2) sha256=efa74f891dd03c0939a931dfc6e74c2813d904763d456ea9762b0525e748db08
282
283
  irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
283
- json (2.19.9) sha256=9b9025b7cdddafa38d316eca0b2358488e42d417045c1b90d216a9fefe46b79a
284
- language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
284
+ json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a
285
+ language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
285
286
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
286
287
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
287
- loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
288
+ loofah (2.25.2) sha256=2007f746959ac65552456e04b433e83deb22759ab38c838b4445c70e43425918
288
289
  minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
289
- nokogiri (1.19.3-aarch64-linux-gnu) sha256=46b89e5d7b9e844c2ee360794240c6ea2a4e6fa0c5892a4ed487db621224b639
290
- nokogiri (1.19.3-aarch64-linux-musl) sha256=8392dfdcd21be7a94dbbe9ccc138dea01b97b24cb2dc02a114ca98bfb1d9a0b7
291
- nokogiri (1.19.3-arm-linux-gnu) sha256=3919d5ffc334ad778a4a9eb88fda7dcb8b1fb58c8a52ac640c6dcd2f038e774f
292
- nokogiri (1.19.3-arm-linux-musl) sha256=9ce1cb6346bb9c67b1550eb537aa183ead91e4b6eadb2f36ade02d8dd2a79fb6
293
- nokogiri (1.19.3-arm64-darwin) sha256=71b9bd424b1b7abc18b05052a1a3cfd3627abdca62be280854cc411791357e42
294
- nokogiri (1.19.3-x86_64-darwin) sha256=77f3fba57d46c53ab31e62fc6c28f705109d1bf6264356c76f132b2be5728d4d
295
- nokogiri (1.19.3-x86_64-linux-gnu) sha256=2f5078620fe12e83669b5b17311b32532a8153d02eee7ad06948b926d6080976
296
- nokogiri (1.19.3-x86_64-linux-musl) sha256=248c906d2166eca5efb56d52fdee5f9a1f51d69a72e2b64fdac647b4ce39ea3f
290
+ nokogiri (1.19.4-aarch64-linux-gnu) sha256=1269fb644a6de405057a53dd5c762b1209b43ca7424f839454d3dbc677c31a8f
291
+ nokogiri (1.19.4-aarch64-linux-musl) sha256=35c65b9ce72b3bb03207bdbe7067915019dc18c1b9b59139684bd6690fdd01af
292
+ nokogiri (1.19.4-arm-linux-gnu) sha256=a301313e38bb065d68239e79734bcd6f56fb6efaacebde29e9abf2a4735340ca
293
+ nokogiri (1.19.4-arm-linux-musl) sha256=588923c101bcfa78869734d247d25b598674323e7f22474fc468f6e5647311eb
294
+ nokogiri (1.19.4-arm64-darwin) sha256=a46db9853286e6597b36ebc6953817d15acf3a299583eb3f89fdc6f91dd63527
295
+ nokogiri (1.19.4-x86_64-darwin) sha256=7fd17057d3e1f00e9954a74b3cd76595d3d4a5ef233b7ed9599047c204f70551
296
+ nokogiri (1.19.4-x86_64-linux-gnu) sha256=379fae440b28915e3f19d752ce2dcf8465ed2b2fbefd2a7ca0dd497bc981a06a
297
+ nokogiri (1.19.4-x86_64-linux-musl) sha256=17dfb7c1fa194ae02fbf7c51a7afc8d278045ab3fdacfd86f91d02d7b274470b
297
298
  parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
298
- parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
299
- pilipinas (1.1.3)
300
- pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
299
+ parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828
300
+ pilipinas (1.1.6)
301
+ pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570
301
302
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
302
303
  prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
303
- psych (5.4.0) sha256=14f72d69a611af663d7d70e4a7b67d9eb1f3ae9f8d916b478961d5a0075ba5b7
304
304
  public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
305
305
  racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
306
- rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
306
+ rack (3.2.7) sha256=93e13e1c24f93556671d85d2d79fa228c3485815c50d7e2f265b5330c6528fb7
307
307
  rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
308
308
  rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
309
309
  rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
310
310
  rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
311
- rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
312
- railties (8.1.3) sha256=913eb0e0cb520aac687ffd74916bd726d48fa21f47833c6292576ef6a286de22
311
+ rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
312
+ railties (8.1.3.1) sha256=2388a232579a00cefea4487de66c8553c3408c1300abdc6cf1799d86ffb04487
313
313
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
314
314
  rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
315
- rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
315
+ rbs (4.1.3) sha256=0c4474a9751cdc14364bfad0b3e53678323bbdc2c31683b0445932867dbab8c4
316
+ rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
316
317
  regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
317
- reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
318
+ reline (0.7.0) sha256=5b012d8e55dbf9d450f12bde2cf7d15ff546ae80b3f8f3b30e570d431815583d
318
319
  rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142
319
320
  rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
320
321
  rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
321
322
  rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
322
323
  rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
323
324
  rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
324
- rubocop (1.87.0) sha256=b9d9ddf55116a513f8ef2c7ae660662d8b49301f118d3f0df61865b33a5c188d
325
- rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
325
+ rubocop (1.89.0) sha256=4dee8e3ee9c45e474834efd9e8d6fd031e8331c8dacdff0de4ad65ae0a6faae7
326
+ rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
326
327
  rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
327
328
  rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
328
329
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
@@ -331,16 +332,16 @@ CHECKSUMS
331
332
  simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
332
333
  simplecov-console (0.9.5) sha256=b1108bcfff5f210143e2b8301698c367b01586f20d25a73e95475a5df6fc6ff6
333
334
  simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
335
+ simplecov-lcov (0.9.0) sha256=7a77a31e200a595ed4b0249493056efd0c920601f53d2ef135ca34ee796346cd
334
336
  simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
335
- sqlite3 (2.9.5-aarch64-linux-gnu) sha256=78075b6337d3d182c6d2b4691049ed45cd220826160c9ea18946bf6a1de200dc
336
- sqlite3 (2.9.5-aarch64-linux-musl) sha256=18c801185deb4adc01ddb281e8f672a39e3d1729979ca91e39439cd3eac0402d
337
- sqlite3 (2.9.5-arm-linux-gnu) sha256=1bdfca0c7d63998c60b0f4a8e3c8df2d33800ccc4abd2d612eddbbbc92a4c48b
338
- sqlite3 (2.9.5-arm-linux-musl) sha256=bae1109d12b2e9f588455967729b008e1ff4feb7761749df695019c9079913c6
339
- sqlite3 (2.9.5-arm64-darwin) sha256=d0cf444a70fc9395d513cfbcc1e6719e224aa645314e3824cb0474c721425aa2
340
- sqlite3 (2.9.5-x86_64-darwin) sha256=8e9caae38bd7ebb29cbeee3e7ab1d12dc2327d9a1b92c7fcf0dda05589627a81
341
- sqlite3 (2.9.5-x86_64-linux-gnu) sha256=233dbcb6714148dd23bc5aeb33e8efd6eac974969564ddd5794c23d5f52b231e
342
- sqlite3 (2.9.5-x86_64-linux-musl) sha256=e7d3a7474e8af0f96150c21abc203fbab5437206bfcdf11deab7741c0ca516f2
343
- stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
337
+ sqlite3 (2.9.6-aarch64-linux-gnu) sha256=d8b1f7d23efd7abac285775a9566562fc7debfef79d594e3a20354406fb7907c
338
+ sqlite3 (2.9.6-aarch64-linux-musl) sha256=3579e1c98cdc7ff5c3722847bb63ed4e1efb7ff675cb5e1e48ef2d4da5fb3bc9
339
+ sqlite3 (2.9.6-arm-linux-gnu) sha256=33541500e3615da02afe54a9cc38b17a6985d3cf9d8b76d6d0a83002f114e7ec
340
+ sqlite3 (2.9.6-arm-linux-musl) sha256=c5490af48bb228fefa54314e9541375c3907e70f8109f3881b5ff97e1c93ae33
341
+ sqlite3 (2.9.6-arm64-darwin) sha256=849b5d7f795e60fe25076d62c72dd722beb45b3850b516ad978d60ee848ec15b
342
+ sqlite3 (2.9.6-x86_64-darwin) sha256=b5842fea77781c14da03fa7bc0feb82db03a69e135affcb6f5399cbd2797a5f3
343
+ sqlite3 (2.9.6-x86_64-linux-gnu) sha256=613188ce02f614126ddbc38c5e217ccffd6306d0dcd9adca9764547aa890a634
344
+ sqlite3 (2.9.6-x86_64-linux-musl) sha256=d493b11818a3573387a1d56e1ee8fa00da23a683a7a1cc063e7a0feeed843abf
344
345
  terminal-table (4.0.0) sha256=f504793203f8251b2ea7c7068333053f0beeea26093ec9962e62ea79f94301d2
345
346
  thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
346
347
  timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
@@ -351,7 +352,7 @@ CHECKSUMS
351
352
  uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
352
353
  useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
353
354
  webmock (3.26.2) sha256=774556f2ea6371846cca68c01769b2eac0d134492d21f6d0ab5dd643965a4c90
354
- zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
355
+ zeitwerk (2.8.3) sha256=2c85125a8467ce069e20123d1e709a08955c9d29c118c25b46b7b7fafdbb92e5
355
356
 
356
357
  BUNDLED WITH
357
358
  4.0.6
@@ -1,8 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pilipinas
4
- # Semantic version of the gem.
5
- #
6
- # Follows {https://semver.org Semantic Versioning}: MAJOR.MINOR.PATCH.
7
- VERSION = '1.1.3'
4
+ VERSION = '1.1.6'
8
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pilipinas
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nujian Den Mark Meralpis