iknow_params 2.3.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +16 -11
- data/Appraisals +14 -9
- data/gemfiles/{activesupport_5_2.gemfile → activesupport_7_1.gemfile} +2 -2
- data/gemfiles/{activesupport_6_0.gemfile → activesupport_7_2.gemfile} +2 -2
- data/gemfiles/{activesupport_6_1.gemfile → activesupport_8_0.gemfile} +2 -2
- data/gemfiles/{activesupport_7_0.gemfile → activesupport_8_1.gemfile} +2 -2
- data/iknow_params.gemspec +4 -3
- data/lib/iknow_params/version.rb +1 -1
- metadata +28 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3aef224e0fc4ee8a811bbb60fe624352c35636a4baf89fb8ea19ad64a9c156bd
|
|
4
|
+
data.tar.gz: 786ef6a2629700baafc476568c66ccdf8fd30f4210668bb4dae41cc51d0f3208
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 513eccf0e4550505606bfe9481303cb3c2718fc2f0f88bdefccd383dbca3a006dd1d606b0904316dfbd8c0d3ce947f20f8659d0d85ed6c9f3d27be351e3bcf79
|
|
7
|
+
data.tar.gz: 91bca71a731897e4697e6fc036036888cf02681ae6e4ce0725115575681b1dc58ef01090560b7461bc15cedc9ec60184473e93262f504d790b27d1f3b51019a2
|
data/.github/workflows/test.yml
CHANGED
|
@@ -16,16 +16,21 @@ jobs:
|
|
|
16
16
|
strategy:
|
|
17
17
|
fail-fast: false
|
|
18
18
|
matrix:
|
|
19
|
-
ruby-version: ['2.7', '3.0', '3.1', '3.2']
|
|
20
19
|
include:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- ruby-version: '3.0'
|
|
24
|
-
bundle-gemfile: gemfiles/activesupport_6_0.gemfile
|
|
25
|
-
- ruby-version: '3.1'
|
|
26
|
-
bundle-gemfile: gemfiles/activesupport_6_1.gemfile
|
|
20
|
+
# We test all relevant versions of rails, using the lowest, non-EOL,
|
|
21
|
+
# Ruby version required for that version of rails.
|
|
27
22
|
- ruby-version: '3.2'
|
|
28
|
-
|
|
23
|
+
activesupport-version: 7.1
|
|
24
|
+
bundle-gemfile: gemfiles/activesupport_7_1.gemfile
|
|
25
|
+
- ruby-version: '3.2'
|
|
26
|
+
activesupport-version: 7.2
|
|
27
|
+
bundle-gemfile: gemfiles/activesupport_7_2.gemfile
|
|
28
|
+
- ruby-version: '3.2'
|
|
29
|
+
activesupport-version: 8.0
|
|
30
|
+
bundle-gemfile: gemfiles/activesupport_8_0.gemfile
|
|
31
|
+
- ruby-version: '3.2'
|
|
32
|
+
activesupport-version: 8.1
|
|
33
|
+
bundle-gemfile: gemfiles/activesupport_8_1.gemfile
|
|
29
34
|
|
|
30
35
|
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
|
31
36
|
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.bundle-gemfile }}
|
|
@@ -40,15 +45,15 @@ jobs:
|
|
|
40
45
|
- name: Run tests
|
|
41
46
|
run: bundle exec rspec --profile 10 --format RspecJunitFormatter --out test_results/rspec.xml --format progress
|
|
42
47
|
- name: Upload result
|
|
43
|
-
uses: actions/upload-artifact@
|
|
48
|
+
uses: actions/upload-artifact@v4
|
|
44
49
|
if: always()
|
|
45
50
|
with:
|
|
46
|
-
name: rspec_${{ matrix.ruby-version }}.xml
|
|
51
|
+
name: rspec_${{ matrix.ruby-version }}_${{ matrix.activesupport-version }}.xml
|
|
47
52
|
path: test_results/rspec.xml
|
|
48
53
|
- name: Test Report
|
|
49
54
|
uses: dorny/test-reporter@v1
|
|
50
55
|
if: always()
|
|
51
56
|
with:
|
|
52
|
-
name: Rspec Tests - ${{ matrix.ruby-version }}
|
|
57
|
+
name: Rspec Tests - ${{ matrix.ruby-version }}_${{ matrix.activesupport-version }}
|
|
53
58
|
path: test_results/rspec.xml
|
|
54
59
|
reporter: java-junit
|
data/Appraisals
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
appraise 'activesupport-
|
|
2
|
-
gem 'activesupport', '~>
|
|
3
|
-
gem 'rails', '~>
|
|
1
|
+
appraise 'activesupport-7-1' do
|
|
2
|
+
gem 'activesupport', '~> 7.1.0'
|
|
3
|
+
gem 'rails', '~> 7.1.0'
|
|
4
4
|
end
|
|
5
5
|
|
|
6
|
-
appraise 'activesupport-
|
|
7
|
-
gem 'activesupport', '~>
|
|
8
|
-
gem 'rails', '~>
|
|
6
|
+
appraise 'activesupport-7-2' do
|
|
7
|
+
gem 'activesupport', '~> 7.2.0'
|
|
8
|
+
gem 'rails', '~> 7.2.0'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
appraise 'activesupport-
|
|
12
|
-
gem 'activesupport', '~>
|
|
13
|
-
gem 'rails', '~>
|
|
11
|
+
appraise 'activesupport-8-0' do
|
|
12
|
+
gem 'activesupport', '~> 8.0.0'
|
|
13
|
+
gem 'rails', '~> 8.0.0'
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
appraise 'activesupport-8-1' do
|
|
17
|
+
gem 'activesupport', '~> 8.1.0'
|
|
18
|
+
gem 'rails', '~> 8.1.0'
|
|
14
19
|
end
|
data/iknow_params.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.homepage = "http://github.com/iknow/iknow_params"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
|
-
spec.required_ruby_version = ">= 2
|
|
16
|
+
spec.required_ruby_version = ">= 3.2"
|
|
17
17
|
spec.required_rubygems_version = ">= 2.5"
|
|
18
18
|
|
|
19
19
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -26,13 +26,14 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
27
27
|
spec.add_development_dependency "sqlite3"
|
|
28
28
|
spec.add_development_dependency "actionpack", "> 5.2.0"
|
|
29
|
-
spec.add_development_dependency "rails", ">
|
|
29
|
+
spec.add_development_dependency "rails", "> 7.1.0"
|
|
30
30
|
|
|
31
31
|
spec.add_development_dependency "byebug"
|
|
32
32
|
spec.add_development_dependency "appraisal"
|
|
33
|
+
spec.add_development_dependency "ostruct"
|
|
33
34
|
spec.add_development_dependency "tzinfo-data"
|
|
34
35
|
|
|
35
36
|
spec.add_dependency "activesupport", "> 5.2.0"
|
|
36
37
|
spec.add_dependency "tzinfo"
|
|
37
|
-
spec.add_dependency "json-schema", "
|
|
38
|
+
spec.add_dependency "json-schema", "> 3.0.0"
|
|
38
39
|
end
|
data/lib/iknow_params/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iknow_params
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dev@iknow.jp
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -86,14 +86,14 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - ">"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
89
|
+
version: 7.1.0
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - ">"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
96
|
+
version: 7.1.0
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: byebug
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -122,6 +122,20 @@ dependencies:
|
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: ostruct
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - ">="
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '0'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - ">="
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '0'
|
|
125
139
|
- !ruby/object:Gem::Dependency
|
|
126
140
|
name: tzinfo-data
|
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -168,14 +182,14 @@ dependencies:
|
|
|
168
182
|
name: json-schema
|
|
169
183
|
requirement: !ruby/object:Gem::Requirement
|
|
170
184
|
requirements:
|
|
171
|
-
- - "
|
|
185
|
+
- - ">"
|
|
172
186
|
- !ruby/object:Gem::Version
|
|
173
187
|
version: 3.0.0
|
|
174
188
|
type: :runtime
|
|
175
189
|
prerelease: false
|
|
176
190
|
version_requirements: !ruby/object:Gem::Requirement
|
|
177
191
|
requirements:
|
|
178
|
-
- - "
|
|
192
|
+
- - ">"
|
|
179
193
|
- !ruby/object:Gem::Version
|
|
180
194
|
version: 3.0.0
|
|
181
195
|
description: ''
|
|
@@ -194,10 +208,10 @@ files:
|
|
|
194
208
|
- LICENSE.txt
|
|
195
209
|
- README.md
|
|
196
210
|
- Rakefile
|
|
197
|
-
- gemfiles/
|
|
198
|
-
- gemfiles/
|
|
199
|
-
- gemfiles/
|
|
200
|
-
- gemfiles/
|
|
211
|
+
- gemfiles/activesupport_7_1.gemfile
|
|
212
|
+
- gemfiles/activesupport_7_2.gemfile
|
|
213
|
+
- gemfiles/activesupport_8_0.gemfile
|
|
214
|
+
- gemfiles/activesupport_8_1.gemfile
|
|
201
215
|
- iknow_params.gemspec
|
|
202
216
|
- lib/iknow_params.rb
|
|
203
217
|
- lib/iknow_params/parser.rb
|
|
@@ -216,7 +230,7 @@ homepage: http://github.com/iknow/iknow_params
|
|
|
216
230
|
licenses:
|
|
217
231
|
- MIT
|
|
218
232
|
metadata: {}
|
|
219
|
-
post_install_message:
|
|
233
|
+
post_install_message:
|
|
220
234
|
rdoc_options: []
|
|
221
235
|
require_paths:
|
|
222
236
|
- lib
|
|
@@ -224,7 +238,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
224
238
|
requirements:
|
|
225
239
|
- - ">="
|
|
226
240
|
- !ruby/object:Gem::Version
|
|
227
|
-
version: '2
|
|
241
|
+
version: '3.2'
|
|
228
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
229
243
|
requirements:
|
|
230
244
|
- - ">="
|
|
@@ -232,7 +246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
246
|
version: '2.5'
|
|
233
247
|
requirements: []
|
|
234
248
|
rubygems_version: 3.1.6
|
|
235
|
-
signing_key:
|
|
249
|
+
signing_key:
|
|
236
250
|
specification_version: 4
|
|
237
251
|
summary: Rails parameter parser for iKnow.
|
|
238
252
|
test_files:
|