docomo-nlu 0.5.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a8b9e4ca5a2a8a63d57cba078370280255238851076142eb80ec81fad6227a5
4
- data.tar.gz: 87be25d92d4a0226493545149292f62326a463338f3107b31fac185b83b72bd1
3
+ metadata.gz: 326bf052ad8ebd5af93f8a736619c01e81605b3983b60729794471d57acfb507
4
+ data.tar.gz: 69a0b4dd4ebce44a2d4ace65751f2953ef5293c7e9f0eb0e165dc1e239d3d53e
5
5
  SHA512:
6
- metadata.gz: 15b54a55cb62ba07deadfacbea1da5f102ae867aec76a57eea2678225f36499843ca8e0b3ac83923f67551acb4065262b9acb434796378b89c20440ec78e9052
7
- data.tar.gz: d1b8ecc6509516b1ea0f8ae3a0116d692d93d6795b3f7919af2e6e20e66efe62b54c3a330f3fda8e21b18ec2ef5cc259d8d19159cc8a3785399367c14551d5c5
6
+ metadata.gz: eca95a08771983c00183434116837a4f8bb5952fb4e3562501663acf468aa3a0ad6bfe9da2325b581179b770b097c71038074ef10f1d2c304d63e6993c2ef619
7
+ data.tar.gz: f0abd8c6cbd17cf1138570bc07ff303387ca053b0ab735a41f17a3c1fcd49a2bb0859a3b408cb9518a5fec7f2f103a5358efb973b16ef48788d8f6f9812e4358
data/.gitignore CHANGED
@@ -9,3 +9,9 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ # Built gems
14
+ *.gem
15
+
16
+ # Cursor
17
+ .cursorindexingignore
data/.rubocop.rspec.yml CHANGED
@@ -1,5 +1,3 @@
1
- require: "rubocop-rspec"
2
-
3
1
  # 日本語だと「〜の場合」になるので suffix でないと対応できない
4
2
  RSpec/ContextWording:
5
3
  Enabled: false
data/.rubocop.ruby.yml CHANGED
@@ -148,7 +148,7 @@ Metrics/PerceivedComplexity:
148
148
  #################### Naming ################################
149
149
 
150
150
  # has_ から始まるメソッドは許可する
151
- Naming/PredicateName:
151
+ Naming/PredicatePrefix:
152
152
  ForbiddenPrefixes:
153
153
  - "is_"
154
154
  - "have_"
data/.rubocop.yml CHANGED
@@ -1,17 +1,16 @@
1
- # Modify the version if you don't use MRI 2.1.
2
- inherit_from:
1
+ inherit_from:
3
2
  - .rubocop.ruby.yml
4
3
  - .rubocop.rspec.yml
5
4
 
6
- require:
5
+ plugins:
7
6
  - rubocop-performance
8
7
  - rubocop-rspec
9
8
 
10
9
  AllCops:
11
- TargetRubyVersion: 2.5
10
+ TargetRubyVersion: 3.3
11
+ NewCops: disable
12
+ SuggestExtensions: false
12
13
 
13
- Rails:
14
- Enabled: true
15
14
  Naming/FileName:
16
15
  Exclude:
17
16
  - "Gemfile"
@@ -19,7 +18,7 @@ Naming/FileName:
19
18
  - "lib/docomo-nlu.rb"
20
19
  RSpec/EmptyExampleGroup:
21
20
  Enabled: false
22
- RSpec/FilePath:
21
+ RSpec/SpecFilePathFormat:
23
22
  CustomTransform:
24
23
  DocomoNlu: docomo_nlu
25
24
  RSpec/MultipleExpectations:
@@ -28,3 +27,9 @@ RSpec/LeakyConstantDeclaration:
28
27
  Enabled: false
29
28
  RSpec/DescribedClass:
30
29
  EnforcedStyle: described_class
30
+ # Specs share fixture IDs across examples via block-scoped constants (see RSpec/LeakyConstantDeclaration above).
31
+ Lint/ConstantDefinitionInBlock:
32
+ Enabled: false
33
+ # These specs only assert on side effects (file upload/download), not return values.
34
+ RSpec/NoExpectationExample:
35
+ Enabled: false
data/CHANGELOG.md CHANGED
@@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
  ### Changed
9
9
  - No planned changes.
10
10
 
11
+ ## [0.6.0] - 2026-07-21
12
+ ### Changed
13
+ - **BREAKING**: Require Ruby >= 3.3.0 (3.1/3.2 are EOL)
14
+ - Upgrade to Rails/ActiveSupport 8.1 (dev dependency); Rails 7.2 security support ends 2026-08-09
15
+ - Update transitive dependencies to close Dependabot security alerts (rack, rack-session, nokogiri, net-imap, addressable, concurrent-ruby, faraday, websocket-driver, json, erb, activestorage, activesupport)
16
+ - Update development dependencies (RuboCop 1.88, rubocop-rspec 3.10, WebMock 3.26)
17
+
18
+ ### Fixed
19
+ - `DocomoNlu.configure`/`.config` no longer depend on `ActiveSupport::Configurable`, which Rails 8.1 deprecates for removal in 8.2
20
+
11
21
  ## [0.5.0] - 2024-12-09
12
22
  ### Changed
13
23
  - **BREAKING**: Drop Ruby 2.7 support, require Ruby >= 3.1.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- docomo-nlu (0.4.0)
4
+ docomo-nlu (0.6.0)
5
5
  activeresource (>= 6.1)
6
6
  bundler
7
7
  faraday (>= 2.0)
@@ -12,146 +12,148 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- actioncable (7.2.3)
16
- actionpack (= 7.2.3)
17
- activesupport (= 7.2.3)
15
+ action_text-trix (2.1.19)
16
+ railties
17
+ actioncable (8.1.3)
18
+ actionpack (= 8.1.3)
19
+ activesupport (= 8.1.3)
18
20
  nio4r (~> 2.0)
19
21
  websocket-driver (>= 0.6.1)
20
22
  zeitwerk (~> 2.6)
21
- actionmailbox (7.2.3)
22
- actionpack (= 7.2.3)
23
- activejob (= 7.2.3)
24
- activerecord (= 7.2.3)
25
- activestorage (= 7.2.3)
26
- activesupport (= 7.2.3)
23
+ actionmailbox (8.1.3)
24
+ actionpack (= 8.1.3)
25
+ activejob (= 8.1.3)
26
+ activerecord (= 8.1.3)
27
+ activestorage (= 8.1.3)
28
+ activesupport (= 8.1.3)
27
29
  mail (>= 2.8.0)
28
- actionmailer (7.2.3)
29
- actionpack (= 7.2.3)
30
- actionview (= 7.2.3)
31
- activejob (= 7.2.3)
32
- activesupport (= 7.2.3)
30
+ actionmailer (8.1.3)
31
+ actionpack (= 8.1.3)
32
+ actionview (= 8.1.3)
33
+ activejob (= 8.1.3)
34
+ activesupport (= 8.1.3)
33
35
  mail (>= 2.8.0)
34
36
  rails-dom-testing (~> 2.2)
35
- actionpack (7.2.3)
36
- actionview (= 7.2.3)
37
- activesupport (= 7.2.3)
38
- cgi
37
+ actionpack (8.1.3)
38
+ actionview (= 8.1.3)
39
+ activesupport (= 8.1.3)
39
40
  nokogiri (>= 1.8.5)
40
- racc
41
- rack (>= 2.2.4, < 3.3)
41
+ rack (>= 2.2.4)
42
42
  rack-session (>= 1.0.1)
43
43
  rack-test (>= 0.6.3)
44
44
  rails-dom-testing (~> 2.2)
45
45
  rails-html-sanitizer (~> 1.6)
46
46
  useragent (~> 0.16)
47
- actiontext (7.2.3)
48
- actionpack (= 7.2.3)
49
- activerecord (= 7.2.3)
50
- activestorage (= 7.2.3)
51
- activesupport (= 7.2.3)
47
+ actiontext (8.1.3)
48
+ action_text-trix (~> 2.1.15)
49
+ actionpack (= 8.1.3)
50
+ activerecord (= 8.1.3)
51
+ activestorage (= 8.1.3)
52
+ activesupport (= 8.1.3)
52
53
  globalid (>= 0.6.0)
53
54
  nokogiri (>= 1.8.5)
54
- actionview (7.2.3)
55
- activesupport (= 7.2.3)
55
+ actionview (8.1.3)
56
+ activesupport (= 8.1.3)
56
57
  builder (~> 3.1)
57
- cgi
58
58
  erubi (~> 1.11)
59
59
  rails-dom-testing (~> 2.2)
60
60
  rails-html-sanitizer (~> 1.6)
61
- activejob (7.2.3)
62
- activesupport (= 7.2.3)
61
+ activejob (8.1.3)
62
+ activesupport (= 8.1.3)
63
63
  globalid (>= 0.3.6)
64
- activemodel (7.2.3)
65
- activesupport (= 7.2.3)
64
+ activemodel (8.1.3)
65
+ activesupport (= 8.1.3)
66
66
  activemodel-serializers-xml (1.0.3)
67
67
  activemodel (>= 5.0.0.a)
68
68
  activesupport (>= 5.0.0.a)
69
69
  builder (~> 3.1)
70
- activerecord (7.2.3)
71
- activemodel (= 7.2.3)
72
- activesupport (= 7.2.3)
70
+ activerecord (8.1.3)
71
+ activemodel (= 8.1.3)
72
+ activesupport (= 8.1.3)
73
73
  timeout (>= 0.4.0)
74
74
  activeresource (6.2.0)
75
75
  activemodel (>= 7.0)
76
76
  activemodel-serializers-xml (~> 1.0)
77
77
  activesupport (>= 7.0)
78
- activestorage (7.2.3)
79
- actionpack (= 7.2.3)
80
- activejob (= 7.2.3)
81
- activerecord (= 7.2.3)
82
- activesupport (= 7.2.3)
78
+ activestorage (8.1.3)
79
+ actionpack (= 8.1.3)
80
+ activejob (= 8.1.3)
81
+ activerecord (= 8.1.3)
82
+ activesupport (= 8.1.3)
83
83
  marcel (~> 1.0)
84
- activesupport (7.2.3)
84
+ activesupport (8.1.3)
85
85
  base64
86
- benchmark (>= 0.3)
87
86
  bigdecimal
88
87
  concurrent-ruby (~> 1.0, >= 1.3.1)
89
88
  connection_pool (>= 2.2.5)
90
89
  drb
91
90
  i18n (>= 1.6, < 2)
91
+ json
92
92
  logger (>= 1.4.2)
93
93
  minitest (>= 5.1)
94
94
  securerandom (>= 0.3)
95
95
  tzinfo (~> 2.0, >= 2.0.5)
96
- addressable (2.8.8)
96
+ uri (>= 0.13.1)
97
+ addressable (2.9.0)
97
98
  public_suffix (>= 2.0.2, < 8.0)
98
99
  ast (2.4.3)
99
100
  base64 (0.3.0)
100
- benchmark (0.5.0)
101
- bigdecimal (3.3.1)
101
+ bigdecimal (4.1.2)
102
102
  builder (3.3.0)
103
- cgi (0.5.0)
104
103
  coderay (1.1.3)
105
- concurrent-ruby (1.3.5)
104
+ concurrent-ruby (1.3.8)
106
105
  connection_pool (3.0.2)
107
106
  crack (1.0.1)
108
107
  bigdecimal
109
108
  rexml
110
- crass (1.0.6)
111
- date (3.5.0)
109
+ crass (1.0.7)
110
+ date (3.5.1)
112
111
  diff-lcs (1.6.2)
113
112
  drb (2.2.3)
114
- erb (6.0.0)
113
+ erb (6.0.6)
115
114
  erubi (1.13.1)
116
- faraday (2.14.0)
115
+ faraday (2.14.3)
117
116
  faraday-net_http (>= 2.0, < 3.5)
118
117
  json
119
118
  logger
120
- faraday-multipart (1.1.1)
119
+ faraday-multipart (1.2.0)
121
120
  multipart-post (~> 2.0)
122
- faraday-net_http (3.4.2)
121
+ faraday-net_http (3.4.4)
123
122
  net-http (~> 0.5)
124
- globalid (1.3.0)
123
+ globalid (1.4.0)
125
124
  activesupport (>= 6.1)
126
125
  hashdiff (1.2.1)
127
- i18n (1.14.7)
126
+ i18n (1.15.2)
128
127
  concurrent-ruby (~> 1.0)
129
- io-console (0.8.1)
130
- irb (1.15.3)
128
+ io-console (0.8.2)
129
+ irb (1.18.0)
131
130
  pp (>= 0.6.0)
131
+ prism (>= 1.3.0)
132
132
  rdoc (>= 4.0.0)
133
133
  reline (>= 0.4.2)
134
- json (2.17.1)
135
- language_server-protocol (3.17.0.5)
134
+ json (2.21.1)
135
+ language_server-protocol (3.17.0.6)
136
136
  lint_roller (1.1.0)
137
137
  logger (1.7.0)
138
- loofah (2.24.1)
138
+ loofah (2.25.2)
139
139
  crass (~> 1.0.2)
140
140
  nokogiri (>= 1.12.0)
141
- mail (2.9.0)
141
+ mail (2.9.1)
142
142
  logger
143
143
  mini_mime (>= 0.1.1)
144
144
  net-imap
145
145
  net-pop
146
146
  net-smtp
147
- marcel (1.1.0)
147
+ marcel (1.2.1)
148
148
  method_source (1.1.0)
149
149
  mini_mime (1.1.5)
150
- minitest (5.26.2)
150
+ minitest (6.0.6)
151
+ drb (~> 2.0)
152
+ prism (~> 1.5)
151
153
  multipart-post (2.4.1)
152
- net-http (0.8.0)
154
+ net-http (0.9.1)
153
155
  uri (>= 0.11.1)
154
- net-imap (0.5.12)
156
+ net-imap (0.6.4.1)
155
157
  date
156
158
  net-protocol
157
159
  net-pop (0.1.2)
@@ -161,71 +163,68 @@ GEM
161
163
  net-smtp (0.5.1)
162
164
  net-protocol
163
165
  nio4r (2.7.5)
164
- nokogiri (1.18.10-aarch64-linux-gnu)
166
+ nokogiri (1.19.4-aarch64-linux-gnu)
165
167
  racc (~> 1.4)
166
- nokogiri (1.18.10-aarch64-linux-musl)
168
+ nokogiri (1.19.4-aarch64-linux-musl)
167
169
  racc (~> 1.4)
168
- nokogiri (1.18.10-arm-linux-gnu)
170
+ nokogiri (1.19.4-arm-linux-gnu)
169
171
  racc (~> 1.4)
170
- nokogiri (1.18.10-arm-linux-musl)
172
+ nokogiri (1.19.4-arm-linux-musl)
171
173
  racc (~> 1.4)
172
- nokogiri (1.18.10-arm64-darwin)
174
+ nokogiri (1.19.4-arm64-darwin)
173
175
  racc (~> 1.4)
174
- nokogiri (1.18.10-x86_64-darwin)
176
+ nokogiri (1.19.4-x86_64-darwin)
175
177
  racc (~> 1.4)
176
- nokogiri (1.18.10-x86_64-linux-gnu)
178
+ nokogiri (1.19.4-x86_64-linux-gnu)
177
179
  racc (~> 1.4)
178
- nokogiri (1.18.10-x86_64-linux-musl)
180
+ nokogiri (1.19.4-x86_64-linux-musl)
179
181
  racc (~> 1.4)
180
- parallel (1.27.0)
181
- parser (3.3.10.0)
182
+ parallel (2.1.0)
183
+ parser (3.3.12.0)
182
184
  ast (~> 2.4.1)
183
185
  racc
184
- pp (0.6.3)
186
+ pp (0.6.4)
185
187
  prettyprint
186
188
  prettyprint (0.2.0)
187
- prism (1.6.0)
188
- pry (0.15.2)
189
+ prism (1.9.0)
190
+ pry (0.16.0)
189
191
  coderay (~> 1.1)
190
192
  method_source (~> 1.0)
191
- psych (5.2.6)
192
- date
193
- stringio
194
- public_suffix (7.0.0)
193
+ reline (>= 0.6.0)
194
+ public_suffix (7.0.5)
195
195
  racc (1.8.1)
196
- rack (3.2.4)
197
- rack-session (2.1.1)
196
+ rack (3.2.6)
197
+ rack-session (2.1.2)
198
198
  base64 (>= 0.1.0)
199
199
  rack (>= 3.0.0)
200
200
  rack-test (2.2.0)
201
201
  rack (>= 1.3)
202
202
  rackup (2.3.1)
203
203
  rack (>= 3)
204
- rails (7.2.3)
205
- actioncable (= 7.2.3)
206
- actionmailbox (= 7.2.3)
207
- actionmailer (= 7.2.3)
208
- actionpack (= 7.2.3)
209
- actiontext (= 7.2.3)
210
- actionview (= 7.2.3)
211
- activejob (= 7.2.3)
212
- activemodel (= 7.2.3)
213
- activerecord (= 7.2.3)
214
- activestorage (= 7.2.3)
215
- activesupport (= 7.2.3)
204
+ rails (8.1.3)
205
+ actioncable (= 8.1.3)
206
+ actionmailbox (= 8.1.3)
207
+ actionmailer (= 8.1.3)
208
+ actionpack (= 8.1.3)
209
+ actiontext (= 8.1.3)
210
+ actionview (= 8.1.3)
211
+ activejob (= 8.1.3)
212
+ activemodel (= 8.1.3)
213
+ activerecord (= 8.1.3)
214
+ activestorage (= 8.1.3)
215
+ activesupport (= 8.1.3)
216
216
  bundler (>= 1.15.0)
217
- railties (= 7.2.3)
217
+ railties (= 8.1.3)
218
218
  rails-dom-testing (2.3.0)
219
219
  activesupport (>= 5.0.0)
220
220
  minitest
221
221
  nokogiri (>= 1.6)
222
- rails-html-sanitizer (1.6.2)
223
- loofah (~> 2.21)
222
+ rails-html-sanitizer (1.7.1)
223
+ loofah (~> 2.25, >= 2.25.2)
224
224
  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)
225
- railties (7.2.3)
226
- actionpack (= 7.2.3)
227
- activesupport (= 7.2.3)
228
- cgi
225
+ railties (8.1.3)
226
+ actionpack (= 8.1.3)
227
+ activesupport (= 8.1.3)
229
228
  irb (~> 1.13)
230
229
  rackup (>= 1.0.0)
231
230
  rake (>= 12.2)
@@ -233,12 +232,17 @@ GEM
233
232
  tsort (>= 0.2)
234
233
  zeitwerk (~> 2.6)
235
234
  rainbow (3.1.1)
236
- rake (13.3.1)
237
- rdoc (6.17.0)
235
+ rake (13.4.2)
236
+ rbs (4.0.3)
237
+ logger
238
+ prism (>= 1.6.0)
239
+ tsort
240
+ rdoc (8.0.0)
238
241
  erb
239
- psych (>= 4.0.0)
242
+ prism (>= 1.6.0)
243
+ rbs (>= 4.0.0)
240
244
  tsort
241
- regexp_parser (2.11.3)
245
+ regexp_parser (2.12.0)
242
246
  reline (0.6.3)
243
247
  io-console (~> 0.5)
244
248
  rexml (3.4.4)
@@ -251,58 +255,57 @@ GEM
251
255
  rspec-expectations (3.13.5)
252
256
  diff-lcs (>= 1.2.0, < 2.0)
253
257
  rspec-support (~> 3.13.0)
254
- rspec-mocks (3.13.7)
258
+ rspec-mocks (3.13.8)
255
259
  diff-lcs (>= 1.2.0, < 2.0)
256
260
  rspec-support (~> 3.13.0)
257
- rspec-support (3.13.6)
261
+ rspec-support (3.13.7)
258
262
  rspec_junit_formatter (0.6.0)
259
263
  rspec-core (>= 2, < 4, != 2.12.0)
260
- rubocop (1.81.7)
264
+ rubocop (1.88.2)
261
265
  json (~> 2.3)
262
266
  language_server-protocol (~> 3.17.0.2)
263
267
  lint_roller (~> 1.1.0)
264
- parallel (~> 1.10)
268
+ parallel (>= 1.10)
265
269
  parser (>= 3.3.0.2)
266
270
  rainbow (>= 2.2.2, < 4.0)
267
271
  regexp_parser (>= 2.9.3, < 3.0)
268
- rubocop-ast (>= 1.47.1, < 2.0)
272
+ rubocop-ast (>= 1.49.0, < 2.0)
269
273
  ruby-progressbar (~> 1.7)
270
274
  unicode-display_width (>= 2.4.0, < 4.0)
271
- rubocop-ast (1.48.0)
275
+ rubocop-ast (1.50.0)
272
276
  parser (>= 3.3.7.2)
273
- prism (~> 1.4)
277
+ prism (~> 1.7)
274
278
  rubocop-performance (1.26.1)
275
279
  lint_roller (~> 1.1)
276
280
  rubocop (>= 1.75.0, < 2.0)
277
281
  rubocop-ast (>= 1.47.1, < 2.0)
278
- rubocop-rspec (3.8.0)
282
+ rubocop-rspec (3.10.2)
279
283
  lint_roller (~> 1.1)
280
- rubocop (~> 1.81)
284
+ regexp_parser (>= 2.0)
285
+ rubocop (~> 1.86, >= 1.86.2)
281
286
  ruby-progressbar (1.13.0)
282
- rubyzip (3.2.2)
287
+ rubyzip (3.4.1)
283
288
  securerandom (0.4.1)
284
- stringio (3.1.9)
285
- thor (1.4.0)
286
- timeout (0.5.0)
289
+ thor (1.5.0)
290
+ timeout (0.6.1)
287
291
  tsort (0.2.0)
288
292
  tzinfo (2.0.6)
289
293
  concurrent-ruby (~> 1.0)
290
294
  unicode-display_width (3.2.0)
291
295
  unicode-emoji (~> 4.1)
292
- unicode-emoji (4.1.0)
296
+ unicode-emoji (4.2.0)
293
297
  uri (1.1.1)
294
298
  useragent (0.16.11)
295
- vcr (6.3.1)
296
- base64
297
- webmock (3.26.1)
299
+ vcr (6.4.0)
300
+ webmock (3.26.2)
298
301
  addressable (>= 2.8.0)
299
302
  crack (>= 0.3.2)
300
303
  hashdiff (>= 0.4.0, < 2.0.0)
301
- websocket-driver (0.8.0)
304
+ websocket-driver (0.8.2)
302
305
  base64
303
306
  websocket-extensions (>= 0.1.0)
304
307
  websocket-extensions (0.1.5)
305
- zeitwerk (2.7.3)
308
+ zeitwerk (2.8.2)
306
309
 
307
310
  PLATFORMS
308
311
  aarch64-linux-gnu
@@ -317,7 +320,7 @@ PLATFORMS
317
320
  DEPENDENCIES
318
321
  docomo-nlu!
319
322
  pry
320
- rails (~> 7.2.0)
323
+ rails (~> 8.1)
321
324
  rspec (~> 3.13)
322
325
  rspec_junit_formatter
323
326
  rubocop (~> 1.69)
@@ -327,120 +330,118 @@ DEPENDENCIES
327
330
  webmock (~> 3.24)
328
331
 
329
332
  CHECKSUMS
330
- actioncable (7.2.3) sha256=e15d17b245f1dfe7cafdda4a0c6f7ba8ebaab1af33884415e09cfef4e93ad4f9
331
- actionmailbox (7.2.3) sha256=16bbf0a7c330f2d08d52d5e3c1b03813a8ef60bfb0a48e89c0bf92b069cb4d5e
332
- actionmailer (7.2.3) sha256=68d646b852a6d2b25d8834fc796c3dc10f76a4c7fd77b3251c3f4dd832ec8ab8
333
- actionpack (7.2.3) sha256=2a14e4c64695777041ea7aaf498462284cadd561f009654393daf9b2de7207cf
334
- actiontext (7.2.3) sha256=a6ffd9efb7b7b4e26029e5c88e8a2ea9aae8d6cefdfed960be139772f1a94037
335
- actionview (7.2.3) sha256=1f427d7a41b43804d7250911535740451b9c32b6416239d87e6dab9d5948ecb2
336
- activejob (7.2.3) sha256=e44964472de267b69e93752f088193c8ad2e56d2ef451d059dd7a53761e5ffb0
337
- activemodel (7.2.3) sha256=bbaf66aeb93212e98ebf6ab900f8290f9a831645f0b235427f5acf0e074739db
333
+ action_text-trix (2.1.19) sha256=7012f59421009cf284aa651294896414d653a61a2417c9b8714c8476d2f74009
334
+ actioncable (8.1.3) sha256=e5bc7f75e44e6a22de29c4f43176927c3a9ce4824464b74ed18d8226e75a80f0
335
+ actionmailbox (8.1.3) sha256=df7da474eaa0e70df4ed5a6fef66eb3b3b0f2dbf7f14518deee8d77f1b4aae59
336
+ actionmailer (8.1.3) sha256=831f724891bb70d0aaa4d76581a6321124b6a752cb655c9346aae5479318448d
337
+ actionpack (8.1.3) sha256=af998cae4d47c5d581a2cc363b5c77eb718b7c4b45748d81b1887b25621c29a3
338
+ actiontext (8.1.3) sha256=d291019c00e1ea9e6463011fa214f6081a56d7b9a1d224e7d3f6384c1dafc7d2
339
+ actionview (8.1.3) sha256=1347c88c7f3edb38100c5ce0e9fb5e62d7755f3edc1b61cce2eb0b2c6ea2fd5d
340
+ activejob (8.1.3) sha256=a149b1766aa8204c3c3da7309e4becd40fcd5529c348cffbf6c9b16b565fe8d3
341
+ activemodel (8.1.3) sha256=90c05cbe4cef3649b8f79f13016191ea94c4525ce4a5c0fb7ef909c4b91c8219
338
342
  activemodel-serializers-xml (1.0.3) sha256=fa1b16305e7254cc58a59c68833e3c0a593a59c8ab95d3be5aaea7cd9416c397
339
- activerecord (7.2.3) sha256=6facb7478ceb5f6baa9f0647daa50b4a3a43934997900f0011e6c667ff41a0d7
343
+ activerecord (8.1.3) sha256=8003be7b2466ba0a2a670e603eeb0a61dd66058fccecfc49901e775260ac70ab
340
344
  activeresource (6.2.0) sha256=818ca60d3cd1ff7bbb7277f41250ad4d61a7cdbe30fbf52b2145e1b66ed13900
341
- activestorage (7.2.3) sha256=4c1422bbfaa60c89e7b43cc38ade7bd3b8dc81024c48a21c1ac56814cf34ca2f
342
- activesupport (7.2.3) sha256=5675c9770dac93e371412684249f9dc3c8cec104efd0624362a520ae685c7b10
343
- addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
345
+ activestorage (8.1.3) sha256=0564ce9309143951a67615e1bb4e090ee54b8befed417133cae614479b46384d
346
+ activesupport (8.1.3) sha256=21a5e0dfbd4c3ddd9e1317ec6a4d782fa226e7867dc70b0743acda81a1dca20e
347
+ addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
344
348
  ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
345
349
  base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
346
- benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
347
- bigdecimal (3.3.1) sha256=eaa01e228be54c4f9f53bf3cc34fe3d5e845c31963e7fcc5bedb05a4e7d52218
350
+ bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
348
351
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
349
- cgi (0.5.0) sha256=fe99f65bb2c146e294372ebb27602adbc3b4c008e9ea7038c6bd48c1ec9759da
350
352
  coderay (1.1.3) sha256=dc530018a4684512f8f38143cd2a096c9f02a1fc2459edcfe534787a7fc77d4b
351
- concurrent-ruby (1.3.5) sha256=813b3e37aca6df2a21a3b9f1d497f8cbab24a2b94cab325bffe65ee0f6cbebc6
353
+ concurrent-ruby (1.3.8) sha256=b2f1be836e968ccc78ccfce277ea79c72a88633f22306782c16ff23fb415d1e1
352
354
  connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
353
355
  crack (1.0.1) sha256=ff4a10390cd31d66440b7524eb1841874db86201d5b70032028553130b6d4c7e
354
- crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
355
- date (3.5.0) sha256=5e74fd6c04b0e65d97ad4f3bb5cb2d8efb37f386cc848f46310b4593ffc46ee5
356
+ crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295
357
+ date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
356
358
  diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
357
- docomo-nlu (0.4.0)
359
+ docomo-nlu (0.6.0)
358
360
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
359
- erb (6.0.0) sha256=2730893f9d8c9733f16cab315a4e4b71c1afa9cabc1a1e7ad1403feba8f52579
361
+ erb (6.0.6) sha256=a9b24986700f5bf127c4f297c5403c3ca41b83b0a316c0cd09a096b56e644ae5
360
362
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
361
- faraday (2.14.0) sha256=8699cfe5d97e55268f2596f9a9d5a43736808a943714e3d9a53e6110593941cd
362
- faraday-multipart (1.1.1) sha256=77a18ff40149030fd1aef55bb4fc7a67ce46419a8a3fcd010e28c2526e8d8903
363
- faraday-net_http (3.4.2) sha256=f147758260d3526939bf57ecf911682f94926a3666502e24c69992765875906c
364
- globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
363
+ faraday (2.14.3) sha256=1882247e6766615c8220b4392bf1d27f6ebb63d8e28267587cef1fb0bf37f278
364
+ faraday-multipart (1.2.0) sha256=7d89a949693714176f612323ca13746a2ded204031a6ba528adee788694ef757
365
+ faraday-net_http (3.4.4) sha256=0e78af151747ed1b00f33e25973b4bc220d7f16c00c39676817c8b12331eb588
366
+ globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
365
367
  hashdiff (1.2.1) sha256=9c079dbc513dfc8833ab59c0c2d8f230fa28499cc5efb4b8dd276cf931457cd1
366
- i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
367
- io-console (0.8.1) sha256=1e15440a6b2f67b6ea496df7c474ed62c860ad11237f29b3bd187f054b925fcb
368
- irb (1.15.3) sha256=4349edff1efa7ff7bfd34cb9df74a133a588ba88c2718098b3b4468b81184aaa
369
- json (2.17.1) sha256=e0e4824541336a44915436f53e7ea74c687314fb8f88080fa1456f6a34ead92e
370
- language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
368
+ i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
369
+ io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
370
+ irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
371
+ json (2.21.1) sha256=13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583
372
+ language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
371
373
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
372
374
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
373
- loofah (2.24.1) sha256=655a30842b70ec476410b347ab1cd2a5b92da46a19044357bbd9f401b009a337
374
- mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
375
- marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
375
+ loofah (2.25.2) sha256=2007f746959ac65552456e04b433e83deb22759ab38c838b4445c70e43425918
376
+ mail (2.9.1) sha256=06574eca475253d6c18145dd70af80d0eb970182d55053497c5f4d797ea160e8
377
+ marcel (1.2.1) sha256=1678e9360e32f9eafa917c80029e2f6d10b2715c66a4b87b6d0da9b9cd1f859f
376
378
  method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
377
379
  mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
378
- minitest (5.26.2) sha256=f021118a6185b9ba9f5af71f2ba103ad770c75afde9f2ab8da512677c550cde3
380
+ minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
379
381
  multipart-post (2.4.1) sha256=9872d03a8e552020ca096adadbf5e3cb1cd1cdd6acd3c161136b8a5737cdb4a8
380
- net-http (0.8.0) sha256=df42c47ce9f9e95ad32a317c97c12f945bc1af365288837ea4ff259876ecb46d
381
- net-imap (0.5.12) sha256=cb8cd05bd353fcc19b6cbc530a9cb06b577a969ea10b7ddb0f37787f74be4444
382
+ net-http (0.9.1) sha256=25ba0b67c63e89df626ed8fac771d0ad24ad151a858af2cc8e6a716ca4336996
383
+ net-imap (0.6.4.1) sha256=29f0360d75a7efd3539f16ac1957dea5c0a51ddeceb348db4553c3120914ea0d
382
384
  net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
383
385
  net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
384
386
  net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
385
387
  nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
386
- nokogiri (1.18.10-aarch64-linux-gnu) sha256=7fb87235d729c74a2be635376d82b1d459230cc17c50300f8e4fcaabc6195344
387
- nokogiri (1.18.10-aarch64-linux-musl) sha256=7e74e58314297cc8a8f1b533f7212d1999dbe2639a9ee6d97b483ea2acc18944
388
- nokogiri (1.18.10-arm-linux-gnu) sha256=51f4f25ab5d5ba1012d6b16aad96b840a10b067b93f35af6a55a2c104a7ee322
389
- nokogiri (1.18.10-arm-linux-musl) sha256=1c6ea754e51cecc85c30ee8ab1e6aa4ce6b6e134d01717e9290e79374a9e00aa
390
- nokogiri (1.18.10-arm64-darwin) sha256=c2b0de30770f50b92c9323fa34a4e1cf5a0af322afcacd239cd66ee1c1b22c85
391
- nokogiri (1.18.10-x86_64-darwin) sha256=536e74bed6db2b5076769cab5e5f5af0cd1dccbbd75f1b3e1fa69d1f5c2d79e2
392
- nokogiri (1.18.10-x86_64-linux-gnu) sha256=ff5ba26ba2dbce5c04b9ea200777fd225061d7a3930548806f31db907e500f72
393
- nokogiri (1.18.10-x86_64-linux-musl) sha256=0651fccf8c2ebbc2475c8b1dfd7ccac3a0a6d09f8a41b72db8c21808cb483385
394
- parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
395
- parser (3.3.10.0) sha256=ce3587fa5cc55a88c4ba5b2b37621b3329aadf5728f9eafa36bbd121462aabd6
396
- pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
388
+ nokogiri (1.19.4-aarch64-linux-gnu) sha256=1269fb644a6de405057a53dd5c762b1209b43ca7424f839454d3dbc677c31a8f
389
+ nokogiri (1.19.4-aarch64-linux-musl) sha256=35c65b9ce72b3bb03207bdbe7067915019dc18c1b9b59139684bd6690fdd01af
390
+ nokogiri (1.19.4-arm-linux-gnu) sha256=a301313e38bb065d68239e79734bcd6f56fb6efaacebde29e9abf2a4735340ca
391
+ nokogiri (1.19.4-arm-linux-musl) sha256=588923c101bcfa78869734d247d25b598674323e7f22474fc468f6e5647311eb
392
+ nokogiri (1.19.4-arm64-darwin) sha256=a46db9853286e6597b36ebc6953817d15acf3a299583eb3f89fdc6f91dd63527
393
+ nokogiri (1.19.4-x86_64-darwin) sha256=7fd17057d3e1f00e9954a74b3cd76595d3d4a5ef233b7ed9599047c204f70551
394
+ nokogiri (1.19.4-x86_64-linux-gnu) sha256=379fae440b28915e3f19d752ce2dcf8465ed2b2fbefd2a7ca0dd497bc981a06a
395
+ nokogiri (1.19.4-x86_64-linux-musl) sha256=17dfb7c1fa194ae02fbf7c51a7afc8d278045ab3fdacfd86f91d02d7b274470b
396
+ parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
397
+ parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828
398
+ pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570
397
399
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
398
- prism (1.6.0) sha256=bfc0281a81718c4872346bc858dc84abd3a60cae78336c65ad35c8fbff641c6b
399
- pry (0.15.2) sha256=12d54b8640d3fa29c9211dd4ffb08f3fd8bf7a4fd9b5a73ce5b59c8709385b6b
400
- psych (5.2.6) sha256=814328aa5dcb6d604d32126a20bc1cbcf05521a5b49dbb1a8b30a07e580f316e
401
- public_suffix (7.0.0) sha256=f7090b5beb0e56f9f10d79eed4d5fbe551b3b425da65877e075dad47a6a1b095
400
+ prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
401
+ pry (0.16.0) sha256=d76c69065698ed1f85e717bd33d7942c38a50868f6b0673c636192b3d1b6054e
402
+ public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
402
403
  racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
403
- rack (3.2.4) sha256=5d74b6f75082a643f43c1e76b419c40f0e5527fcfee1e669ac1e6b73c0ccb6f6
404
- rack-session (2.1.1) sha256=0b6dc07dea7e4b583f58a48e8b806d4c9f1c6c9214ebc202ec94562cbea2e4e9
404
+ rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
405
+ rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
405
406
  rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
406
407
  rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
407
- rails (7.2.3) sha256=9a9812eb131189676e64665f6883fc9c4051f412cc87ef9e3fa242a09c609bff
408
+ rails (8.1.3) sha256=6d017ba5348c98fc909753a8169b21d44de14d2a0b92d140d1a966834c3c9cd3
408
409
  rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
409
- rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
410
- railties (7.2.3) sha256=6eb010a6bfe6f223e783f739ddfcbdb5b88b1f3a87f7739f0a0685e466250422
410
+ rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
411
+ railties (8.1.3) sha256=913eb0e0cb520aac687ffd74916bd726d48fa21f47833c6292576ef6a286de22
411
412
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
412
- rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
413
- rdoc (6.17.0) sha256=0f50d4e568fc98195f9bb155a9e8dff6c7feabfb515fb22ef6df1d12ad5a02b7
414
- regexp_parser (2.11.3) sha256=ca13f381a173b7a93450e53459075c9b76a10433caadcb2f1180f2c741fc55a4
413
+ rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
414
+ rbs (4.0.3) sha256=5a7bf70e2628549d9a1f44eae447b2cfe55968a9c60cfff52693a4bdcc020e14
415
+ rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
416
+ regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
415
417
  reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
416
418
  rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142
417
419
  rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
418
420
  rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
419
421
  rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
420
- rspec-mocks (3.13.7) sha256=0979034e64b1d7a838aaaddf12bf065ea4dc40ef3d4c39f01f93ae2c66c62b1c
421
- rspec-support (3.13.6) sha256=2e8de3702427eab064c9352fe74488cc12a1bfae887ad8b91cba480ec9f8afb2
422
+ rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
423
+ rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
422
424
  rspec_junit_formatter (0.6.0) sha256=40dde674e6ae4e6cc0ff560da25497677e34fefd2338cc467a8972f602b62b15
423
- rubocop (1.81.7) sha256=6fb5cc298c731691e2a414fe0041a13eb1beed7bab23aec131da1bcc527af094
424
- rubocop-ast (1.48.0) sha256=22df9bbf3f7a6eccde0fad54e68547ae1e2a704bf8719e7c83813a99c05d2e76
425
+ rubocop (1.88.2) sha256=8def251c90cd955feb4daa3edc0ab56893250c4ce90ef81e6c80c03f9a939bbf
426
+ rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
425
427
  rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
426
- rubocop-rspec (3.8.0) sha256=28440dccb3f223a9938ca1f946bd3438275b8c6c156dab909e2cb8bc424cab33
428
+ rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
427
429
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
428
- rubyzip (3.2.2) sha256=c0ed99385f0625415c8f05bcae33fe649ed2952894a95ff8b08f26ca57ea5b3c
430
+ rubyzip (3.4.1) sha256=0a79e745b5c25872ebd148457df5665da8530ed8626c993b01457128f173ca02
429
431
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
430
- stringio (3.1.9) sha256=c111af13d3a73eab96a3bc2655ecf93788d13d28cb8e25c1dcbff89ace885121
431
- thor (1.4.0) sha256=8763e822ccb0f1d7bee88cde131b19a65606657b847cc7b7b4b82e772bcd8a3d
432
- timeout (0.5.0) sha256=852aefd13f41d84c2d0d83099b275034c6517395884b58e635acc8847c9190cb
432
+ thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
433
+ timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
433
434
  tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
434
435
  tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
435
436
  unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
436
- unicode-emoji (4.1.0) sha256=4997d2d5df1ed4252f4830a9b6e86f932e2013fbff2182a9ce9ccabda4f325a5
437
+ unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
437
438
  uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
438
439
  useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
439
- vcr (6.3.1) sha256=37b56e157e720446a3f4d2d39919cabef8cb7b6c45936acffd2ef8229fec03ed
440
- webmock (3.26.1) sha256=4f696fb57c90a827c20aadb2d4f9058bbff10f7f043bd0d4c3f58791143b1cd7
441
- websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
440
+ vcr (6.4.0) sha256=077ac92cc16efc5904eb90492a18153b5e6ca5398046d8a249a7c96a9ea24ae6
441
+ webmock (3.26.2) sha256=774556f2ea6371846cca68c01769b2eac0d134492d21f6d0ab5dd643965a4c90
442
+ websocket-driver (0.8.2) sha256=97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146
442
443
  websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
443
- zeitwerk (2.7.3) sha256=b2e86b4a9b57d26ba68a15230dcc7fe6f040f06831ce64417b0621ad96ba3e85
444
+ zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
444
445
 
445
446
  BUNDLED WITH
446
447
  4.0.0
data/docomo-nlu.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.description = "API Client of docomo NLPManagementAPI for ruby."
15
15
  spec.homepage = "https://github.com/jagrament/docomo-nlu"
16
16
 
17
- spec.required_ruby_version = ">= 3.1.0"
17
+ spec.required_ruby_version = ">= 3.3.0"
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.add_dependency "rubyzip"
34
34
 
35
35
  spec.add_development_dependency "pry"
36
- spec.add_development_dependency "rails", "~> 7.2.0"
36
+ spec.add_development_dependency "rails", "~> 8.1"
37
37
  spec.add_development_dependency "rspec", "~> 3.13"
38
38
  spec.add_development_dependency "rspec_junit_formatter"
39
39
  spec.add_development_dependency "rubocop", "~> 1.69"
@@ -1,9 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "active_support/configurable"
3
+ require "active_support"
4
+ require "active_support/core_ext/class/attribute"
4
5
  module DocomoNlu
5
6
  def self.configure
6
- yield @config ||= DocomoNlu::Configuration.new
7
+ # @config is shared with .config below, not scoped to this method
8
+ yield @config ||= DocomoNlu::Configuration.new # rubocop:disable Naming/MemoizedInstanceVariableName
7
9
  end
8
10
 
9
11
  def self.config
@@ -11,10 +13,9 @@ module DocomoNlu
11
13
  end
12
14
 
13
15
  class Configuration
14
- include ActiveSupport::Configurable
15
- config_accessor :nlu_host
16
- config_accessor :nlu_version
17
- config_accessor :admin_access_token
16
+ class_attribute :nlu_host
17
+ class_attribute :nlu_version
18
+ class_attribute :admin_access_token
18
19
  end
19
20
 
20
21
  configure do |config|
@@ -79,11 +79,11 @@ module DocomoNlu
79
79
  end
80
80
 
81
81
  def compile(prefix_options)
82
- return if deploy_request(:compile, prefix_options) != ""
82
+ nil if deploy_request(:compile, prefix_options) != ""
83
83
  end
84
84
 
85
85
  def transfer(prefix_options)
86
- return if deploy_request(:transfer, prefix_options) != ""
86
+ nil if deploy_request(:transfer, prefix_options) != ""
87
87
  end
88
88
 
89
89
  def deploy_request(method, prefix_options)
@@ -6,7 +6,7 @@ module DocomoNlu
6
6
  self.element_name = ""
7
7
  self.prefix = "/management/v2.6/projects/:project_id/bots/:bot_id/:method"
8
8
 
9
- def initialize(attributes = {}, persisted = false)
9
+ def initialize(attributes = {}, persisted = false) # rubocop:disable Style/OptionalBooleanParameter -- must match ActiveResource::Base#initialize signature
10
10
  super(attributes, persisted)
11
11
  prefix_options[:method] = "entry"
12
12
  end
@@ -43,6 +43,7 @@ module DocomoNlu
43
43
 
44
44
  private
45
45
 
46
+ # rubocop:disable Metrics/AbcSize
46
47
  def download(category = nil, prefix_options = {})
47
48
  extention = category.blank? ? ".zip" : ".map"
48
49
 
@@ -65,6 +66,7 @@ module DocomoNlu
65
66
  end
66
67
  nil
67
68
  end
69
+ # rubocop:enable Metrics/AbcSize
68
70
 
69
71
  def upload(file, prefix_options)
70
72
  conn = Faraday.new(url: site.to_s, ssl: { verify: false }) do |builder|
@@ -10,10 +10,6 @@ module DocomoNlu
10
10
  self.class.create(attributes[:file], prefix_options)
11
11
  end
12
12
 
13
- def destroy
14
- super
15
- end
16
-
17
13
  def download
18
14
  self.file = self.class.download(prefix_options).file
19
15
  end
@@ -26,6 +26,7 @@ module DocomoNlu
26
26
  end
27
27
  end
28
28
 
29
+ # rubocop:disable Metrics/ParameterLists, Style/OptionalBooleanParameter -- public API; changing to keyword args would break existing callers
29
30
  def registration(app_id = "", registration_id = "docomo-nlu", app_kind = "docomo-nlu", notification = false)
30
31
  body = {
31
32
  bot_id: @attributes[:botId],
@@ -37,6 +38,7 @@ module DocomoNlu
37
38
  res = connection.post("/UserRegistrationServer/users/applications", body.to_json, self.class.headers)
38
39
  @attributes.store(:appId, JSON.parse(res.body)["app_id"])
39
40
  end
41
+ # rubocop:enable Metrics/ParameterLists, Style/OptionalBooleanParameter
40
42
 
41
43
  def dialogue(voice_text, params = {})
42
44
  @attributes[:voiceText] = voice_text
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DocomoNlu
4
- VERSION = "0.5.0"
4
+ VERSION = "0.6.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docomo-nlu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Koji Yamazaki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-12-09 00:00:00.000000000 Z
11
+ date: 2026-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeresource
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 7.2.0
117
+ version: '8.1'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 7.2.0
124
+ version: '8.1'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: rspec
127
127
  requirement: !ruby/object:Gem::Requirement
@@ -227,7 +227,6 @@ executables: []
227
227
  extensions: []
228
228
  extra_rdoc_files: []
229
229
  files:
230
- - ".circleci/config.yml"
231
230
  - ".gitignore"
232
231
  - ".reek"
233
232
  - ".reek.yml"
@@ -420,7 +419,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
420
419
  requirements:
421
420
  - - ">="
422
421
  - !ruby/object:Gem::Version
423
- version: 3.1.0
422
+ version: 3.3.0
424
423
  required_rubygems_version: !ruby/object:Gem::Requirement
425
424
  requirements:
426
425
  - - ">="
data/.circleci/config.yml DELETED
@@ -1,48 +0,0 @@
1
- # Ruby CircleCI 2.1 configuration file
2
- #
3
- # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
- #
5
- version: 2.1
6
- orbs:
7
- ruby: circleci/ruby@0.1.0
8
- ruby-orbs: sue445/ruby-orbs@volatile
9
- ruby-linter: amyroi/ruby-linter@volatile
10
-
11
- executors:
12
- default:
13
- working_directory: ~/docomo-nlu
14
- docker:
15
- - image: circleci/ruby:2.6.3
16
- commands:
17
- setup_bundler:
18
- steps:
19
- - run:
20
- name: Install bundler
21
- command: gem install bundler -v $BUNDLER_VERSION
22
- jobs:
23
- build:
24
- executor: default
25
- environment:
26
- RAILS_ENV: test
27
- CIRCLE_TEST_REPORTS: /tmp/docomo-nlu-test-results
28
- steps:
29
- - checkout
30
- - setup_bundler
31
- - ruby/load-cache:
32
- key: docomo-nlu-bundle
33
- - ruby-orbs/bundle-install:
34
- bundle_jobs: 4
35
- bundle_retry: 3
36
- bundle_clean: true
37
- - ruby/save-cache:
38
- key: docomo-nlu-bundle
39
- - ruby/test
40
- - ruby-linter/rubocop:
41
- files: "lib/**/*.rb spec/**/*.rb"
42
- report_dir: $CIRCLE_TEST_REPORTS
43
- - ruby-linter/reek
44
- workflows:
45
- version: 2
46
- build:
47
- jobs:
48
- - build