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 +4 -4
- data/.gitignore +6 -0
- data/.rubocop.rspec.yml +0 -2
- data/.rubocop.ruby.yml +1 -1
- data/.rubocop.yml +12 -7
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +201 -200
- data/docomo-nlu.gemspec +2 -2
- data/lib/docomo_nlu/config.rb +7 -6
- data/lib/docomo_nlu/management/aiml_base.rb +2 -2
- data/lib/docomo_nlu/management/entry.rb +1 -1
- data/lib/docomo_nlu/management/multipart_base.rb +2 -0
- data/lib/docomo_nlu/management/ok_ng_base.rb +0 -4
- data/lib/docomo_nlu/spontaneous.rb +2 -0
- data/lib/docomo_nlu/version.rb +1 -1
- metadata +5 -6
- data/.circleci/config.yml +0 -48
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 326bf052ad8ebd5af93f8a736619c01e81605b3983b60729794471d57acfb507
|
|
4
|
+
data.tar.gz: 69a0b4dd4ebce44a2d4ace65751f2953ef5293c7e9f0eb0e165dc1e239d3d53e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eca95a08771983c00183434116837a4f8bb5952fb4e3562501663acf468aa3a0ad6bfe9da2325b581179b770b097c71038074ef10f1d2c304d63e6993c2ef619
|
|
7
|
+
data.tar.gz: f0abd8c6cbd17cf1138570bc07ff303387ca053b0ab735a41f17a3c1fcd49a2bb0859a3b408cb9518a5fec7f2f103a5358efb973b16ef48788d8f6f9812e4358
|
data/.gitignore
CHANGED
data/.rubocop.rspec.yml
CHANGED
data/.rubocop.ruby.yml
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
inherit_from:
|
|
1
|
+
inherit_from:
|
|
3
2
|
- .rubocop.ruby.yml
|
|
4
3
|
- .rubocop.rspec.yml
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
plugins:
|
|
7
6
|
- rubocop-performance
|
|
8
7
|
- rubocop-rspec
|
|
9
8
|
|
|
10
9
|
AllCops:
|
|
11
|
-
TargetRubyVersion:
|
|
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/
|
|
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
|
+
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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 (
|
|
22
|
-
actionpack (=
|
|
23
|
-
activejob (=
|
|
24
|
-
activerecord (=
|
|
25
|
-
activestorage (=
|
|
26
|
-
activesupport (=
|
|
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 (
|
|
29
|
-
actionpack (=
|
|
30
|
-
actionview (=
|
|
31
|
-
activejob (=
|
|
32
|
-
activesupport (=
|
|
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 (
|
|
36
|
-
actionview (=
|
|
37
|
-
activesupport (=
|
|
38
|
-
cgi
|
|
37
|
+
actionpack (8.1.3)
|
|
38
|
+
actionview (= 8.1.3)
|
|
39
|
+
activesupport (= 8.1.3)
|
|
39
40
|
nokogiri (>= 1.8.5)
|
|
40
|
-
|
|
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 (
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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 (
|
|
55
|
-
activesupport (=
|
|
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 (
|
|
62
|
-
activesupport (=
|
|
61
|
+
activejob (8.1.3)
|
|
62
|
+
activesupport (= 8.1.3)
|
|
63
63
|
globalid (>= 0.3.6)
|
|
64
|
-
activemodel (
|
|
65
|
-
activesupport (=
|
|
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 (
|
|
71
|
-
activemodel (=
|
|
72
|
-
activesupport (=
|
|
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 (
|
|
79
|
-
actionpack (=
|
|
80
|
-
activejob (=
|
|
81
|
-
activerecord (=
|
|
82
|
-
activesupport (=
|
|
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 (
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
111
|
-
date (3.5.
|
|
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.
|
|
113
|
+
erb (6.0.6)
|
|
115
114
|
erubi (1.13.1)
|
|
116
|
-
faraday (2.14.
|
|
115
|
+
faraday (2.14.3)
|
|
117
116
|
faraday-net_http (>= 2.0, < 3.5)
|
|
118
117
|
json
|
|
119
118
|
logger
|
|
120
|
-
faraday-multipart (1.
|
|
119
|
+
faraday-multipart (1.2.0)
|
|
121
120
|
multipart-post (~> 2.0)
|
|
122
|
-
faraday-net_http (3.4.
|
|
121
|
+
faraday-net_http (3.4.4)
|
|
123
122
|
net-http (~> 0.5)
|
|
124
|
-
globalid (1.
|
|
123
|
+
globalid (1.4.0)
|
|
125
124
|
activesupport (>= 6.1)
|
|
126
125
|
hashdiff (1.2.1)
|
|
127
|
-
i18n (1.
|
|
126
|
+
i18n (1.15.2)
|
|
128
127
|
concurrent-ruby (~> 1.0)
|
|
129
|
-
io-console (0.8.
|
|
130
|
-
irb (1.
|
|
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.
|
|
135
|
-
language_server-protocol (3.17.0.
|
|
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.
|
|
138
|
+
loofah (2.25.2)
|
|
139
139
|
crass (~> 1.0.2)
|
|
140
140
|
nokogiri (>= 1.12.0)
|
|
141
|
-
mail (2.9.
|
|
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
|
|
147
|
+
marcel (1.2.1)
|
|
148
148
|
method_source (1.1.0)
|
|
149
149
|
mini_mime (1.1.5)
|
|
150
|
-
minitest (
|
|
150
|
+
minitest (6.0.6)
|
|
151
|
+
drb (~> 2.0)
|
|
152
|
+
prism (~> 1.5)
|
|
151
153
|
multipart-post (2.4.1)
|
|
152
|
-
net-http (0.
|
|
154
|
+
net-http (0.9.1)
|
|
153
155
|
uri (>= 0.11.1)
|
|
154
|
-
net-imap (0.
|
|
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.
|
|
166
|
+
nokogiri (1.19.4-aarch64-linux-gnu)
|
|
165
167
|
racc (~> 1.4)
|
|
166
|
-
nokogiri (1.
|
|
168
|
+
nokogiri (1.19.4-aarch64-linux-musl)
|
|
167
169
|
racc (~> 1.4)
|
|
168
|
-
nokogiri (1.
|
|
170
|
+
nokogiri (1.19.4-arm-linux-gnu)
|
|
169
171
|
racc (~> 1.4)
|
|
170
|
-
nokogiri (1.
|
|
172
|
+
nokogiri (1.19.4-arm-linux-musl)
|
|
171
173
|
racc (~> 1.4)
|
|
172
|
-
nokogiri (1.
|
|
174
|
+
nokogiri (1.19.4-arm64-darwin)
|
|
173
175
|
racc (~> 1.4)
|
|
174
|
-
nokogiri (1.
|
|
176
|
+
nokogiri (1.19.4-x86_64-darwin)
|
|
175
177
|
racc (~> 1.4)
|
|
176
|
-
nokogiri (1.
|
|
178
|
+
nokogiri (1.19.4-x86_64-linux-gnu)
|
|
177
179
|
racc (~> 1.4)
|
|
178
|
-
nokogiri (1.
|
|
180
|
+
nokogiri (1.19.4-x86_64-linux-musl)
|
|
179
181
|
racc (~> 1.4)
|
|
180
|
-
parallel (1.
|
|
181
|
-
parser (3.3.
|
|
182
|
+
parallel (2.1.0)
|
|
183
|
+
parser (3.3.12.0)
|
|
182
184
|
ast (~> 2.4.1)
|
|
183
185
|
racc
|
|
184
|
-
pp (0.6.
|
|
186
|
+
pp (0.6.4)
|
|
185
187
|
prettyprint
|
|
186
188
|
prettyprint (0.2.0)
|
|
187
|
-
prism (1.
|
|
188
|
-
pry (0.
|
|
189
|
+
prism (1.9.0)
|
|
190
|
+
pry (0.16.0)
|
|
189
191
|
coderay (~> 1.1)
|
|
190
192
|
method_source (~> 1.0)
|
|
191
|
-
|
|
192
|
-
|
|
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.
|
|
197
|
-
rack-session (2.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 (
|
|
205
|
-
actioncable (=
|
|
206
|
-
actionmailbox (=
|
|
207
|
-
actionmailer (=
|
|
208
|
-
actionpack (=
|
|
209
|
-
actiontext (=
|
|
210
|
-
actionview (=
|
|
211
|
-
activejob (=
|
|
212
|
-
activemodel (=
|
|
213
|
-
activerecord (=
|
|
214
|
-
activestorage (=
|
|
215
|
-
activesupport (=
|
|
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 (=
|
|
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.
|
|
223
|
-
loofah (~> 2.
|
|
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 (
|
|
226
|
-
actionpack (=
|
|
227
|
-
activesupport (=
|
|
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.
|
|
237
|
-
|
|
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
|
-
|
|
242
|
+
prism (>= 1.6.0)
|
|
243
|
+
rbs (>= 4.0.0)
|
|
240
244
|
tsort
|
|
241
|
-
regexp_parser (2.
|
|
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.
|
|
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.
|
|
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.
|
|
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 (
|
|
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.
|
|
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.
|
|
275
|
+
rubocop-ast (1.50.0)
|
|
272
276
|
parser (>= 3.3.7.2)
|
|
273
|
-
prism (~> 1.
|
|
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.
|
|
282
|
+
rubocop-rspec (3.10.2)
|
|
279
283
|
lint_roller (~> 1.1)
|
|
280
|
-
|
|
284
|
+
regexp_parser (>= 2.0)
|
|
285
|
+
rubocop (~> 1.86, >= 1.86.2)
|
|
281
286
|
ruby-progressbar (1.13.0)
|
|
282
|
-
rubyzip (3.
|
|
287
|
+
rubyzip (3.4.1)
|
|
283
288
|
securerandom (0.4.1)
|
|
284
|
-
|
|
285
|
-
|
|
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.
|
|
296
|
+
unicode-emoji (4.2.0)
|
|
293
297
|
uri (1.1.1)
|
|
294
298
|
useragent (0.16.11)
|
|
295
|
-
vcr (6.
|
|
296
|
-
|
|
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.
|
|
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.
|
|
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 (~>
|
|
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
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
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 (
|
|
343
|
+
activerecord (8.1.3) sha256=8003be7b2466ba0a2a670e603eeb0a61dd66058fccecfc49901e775260ac70ab
|
|
340
344
|
activeresource (6.2.0) sha256=818ca60d3cd1ff7bbb7277f41250ad4d61a7cdbe30fbf52b2145e1b66ed13900
|
|
341
|
-
activestorage (
|
|
342
|
-
activesupport (
|
|
343
|
-
addressable (2.
|
|
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
|
-
|
|
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.
|
|
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.
|
|
355
|
-
date (3.5.
|
|
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.
|
|
359
|
+
docomo-nlu (0.6.0)
|
|
358
360
|
drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
|
|
359
|
-
erb (6.0.
|
|
361
|
+
erb (6.0.6) sha256=a9b24986700f5bf127c4f297c5403c3ca41b83b0a316c0cd09a096b56e644ae5
|
|
360
362
|
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
|
361
|
-
faraday (2.14.
|
|
362
|
-
faraday-multipart (1.
|
|
363
|
-
faraday-net_http (3.4.
|
|
364
|
-
globalid (1.
|
|
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.
|
|
367
|
-
io-console (0.8.
|
|
368
|
-
irb (1.
|
|
369
|
-
json (2.
|
|
370
|
-
language_server-protocol (3.17.0.
|
|
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.
|
|
374
|
-
mail (2.9.
|
|
375
|
-
marcel (1.1
|
|
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 (
|
|
380
|
+
minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
|
|
379
381
|
multipart-post (2.4.1) sha256=9872d03a8e552020ca096adadbf5e3cb1cd1cdd6acd3c161136b8a5737cdb4a8
|
|
380
|
-
net-http (0.
|
|
381
|
-
net-imap (0.
|
|
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.
|
|
387
|
-
nokogiri (1.
|
|
388
|
-
nokogiri (1.
|
|
389
|
-
nokogiri (1.
|
|
390
|
-
nokogiri (1.
|
|
391
|
-
nokogiri (1.
|
|
392
|
-
nokogiri (1.
|
|
393
|
-
nokogiri (1.
|
|
394
|
-
parallel (1.
|
|
395
|
-
parser (3.3.
|
|
396
|
-
pp (0.6.
|
|
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.
|
|
399
|
-
pry (0.
|
|
400
|
-
|
|
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.
|
|
404
|
-
rack-session (2.1.
|
|
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 (
|
|
408
|
+
rails (8.1.3) sha256=6d017ba5348c98fc909753a8169b21d44de14d2a0b92d140d1a966834c3c9cd3
|
|
408
409
|
rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
|
|
409
|
-
rails-html-sanitizer (1.
|
|
410
|
-
railties (
|
|
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.
|
|
413
|
-
|
|
414
|
-
|
|
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.
|
|
421
|
-
rspec-support (3.13.
|
|
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.
|
|
424
|
-
rubocop-ast (1.
|
|
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.
|
|
428
|
+
rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
|
|
427
429
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
428
|
-
rubyzip (3.
|
|
430
|
+
rubyzip (3.4.1) sha256=0a79e745b5c25872ebd148457df5665da8530ed8626c993b01457128f173ca02
|
|
429
431
|
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
|
|
430
|
-
|
|
431
|
-
|
|
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.
|
|
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.
|
|
440
|
-
webmock (3.26.
|
|
441
|
-
websocket-driver (0.8.
|
|
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.
|
|
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.
|
|
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", "~>
|
|
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"
|
data/lib/docomo_nlu/config.rb
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "active_support
|
|
3
|
+
require "active_support"
|
|
4
|
+
require "active_support/core_ext/class/attribute"
|
|
4
5
|
module DocomoNlu
|
|
5
6
|
def self.configure
|
|
6
|
-
|
|
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
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
82
|
+
nil if deploy_request(:compile, prefix_options) != ""
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
def transfer(prefix_options)
|
|
86
|
-
|
|
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|
|
|
@@ -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
|
data/lib/docomo_nlu/version.rb
CHANGED
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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.
|
|
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
|