iknow_params 2.3.0 → 2.3.1
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/gem-push.yml +31 -0
- data/.github/workflows/test.yml +54 -0
- data/gemfiles/activesupport_6_1.gemfile +9 -0
- data/lib/iknow_params/serializer.rb +6 -1
- data/lib/iknow_params/version.rb +1 -1
- metadata +6 -4
- data/.circleci/config.yml +0 -107
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee414853a4b2107338e0f17ce3a81b9fbe12a5a0e9ac95e65664469fb5b3cbd9
|
4
|
+
data.tar.gz: 2d3c43707efeccea503065088c66ea75c6180d20f5f02e8d84260dc544bdabaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97841f46f550b5337bde1159408197bae0097ef6fc32f130ca35d9fd797a80430a1c506f2734d53d7929d4adc90fb344ef970f47bfacf4ed8cdfd5fcbcac1d20
|
7
|
+
data.tar.gz: 80127d5d23352dbc2e30a85a7dc396c08998fa52ca8f44e04d443b3f9bacb2b1c68e74d836060356dd73e37e678b3753b572d0eb21403d9c8d1eb46f3e1814b2
|
@@ -0,0 +1,31 @@
|
|
1
|
+
name: Publish Ruby Gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ "master" ]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
build:
|
9
|
+
name: Build + Publish
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
permissions:
|
12
|
+
contents: read
|
13
|
+
packages: write
|
14
|
+
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v3
|
17
|
+
- name: Set up Ruby 2.7
|
18
|
+
uses: ruby/setup-ruby@v1
|
19
|
+
with:
|
20
|
+
ruby-version: 2.7
|
21
|
+
|
22
|
+
- name: Publish to RubyGems
|
23
|
+
run: |
|
24
|
+
mkdir -p $HOME/.gem
|
25
|
+
touch $HOME/.gem/credentials
|
26
|
+
chmod 0600 $HOME/.gem/credentials
|
27
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
28
|
+
gem build *.gemspec
|
29
|
+
gem push *.gem
|
30
|
+
env:
|
31
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
@@ -0,0 +1,54 @@
|
|
1
|
+
name: Run Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches: "**"
|
6
|
+
|
7
|
+
permissions:
|
8
|
+
contents: read
|
9
|
+
checks: write
|
10
|
+
pull-requests: write
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
test:
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
|
16
|
+
strategy:
|
17
|
+
fail-fast: false
|
18
|
+
matrix:
|
19
|
+
ruby-version: ['2.7', '3.0', '3.1', '3.2']
|
20
|
+
include:
|
21
|
+
- ruby-version: '2.7'
|
22
|
+
bundle-gemfile: gemfiles/activesupport_5_2.gemfile
|
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
|
27
|
+
- ruby-version: '3.2'
|
28
|
+
bundle-gemfile: gemfiles/activesupport_7_0.gemfile
|
29
|
+
|
30
|
+
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
31
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.bundle-gemfile }}
|
32
|
+
|
33
|
+
steps:
|
34
|
+
- uses: actions/checkout@v3
|
35
|
+
- name: Set up Ruby
|
36
|
+
uses: ruby/setup-ruby@v1
|
37
|
+
with:
|
38
|
+
ruby-version: ${{ matrix.ruby-version }}
|
39
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
40
|
+
- name: Run tests
|
41
|
+
run: bundle exec rspec --profile 10 --format RspecJunitFormatter --out test_results/rspec.xml --format progress
|
42
|
+
- name: Upload result
|
43
|
+
uses: actions/upload-artifact@v3
|
44
|
+
if: always()
|
45
|
+
with:
|
46
|
+
name: rspec_${{ matrix.ruby-version }}.xml
|
47
|
+
path: test_results/rspec.xml
|
48
|
+
- name: Test Report
|
49
|
+
uses: dorny/test-reporter@v1
|
50
|
+
if: always()
|
51
|
+
with:
|
52
|
+
name: Rspec Tests - ${{ matrix.ruby-version }}
|
53
|
+
path: test_results/rspec.xml
|
54
|
+
reporter: java-junit
|
@@ -237,7 +237,12 @@ class IknowParams::Serializer
|
|
237
237
|
class UUID < String
|
238
238
|
def load(str)
|
239
239
|
matches_type!(str, err: LoadError)
|
240
|
-
|
240
|
+
|
241
|
+
# UUIDs in Ruby are typically represented as lower case strings,
|
242
|
+
# for example, as returned by SecureRandom.uuid. To avoid surprises,
|
243
|
+
# and ensure that two equivalent UUIDs are equal to each other, we
|
244
|
+
# canonicalize any provided strings to lower case.
|
245
|
+
super.downcase
|
241
246
|
end
|
242
247
|
|
243
248
|
def matches_type?(str)
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dev@iknow.jp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -185,7 +185,8 @@ executables: []
|
|
185
185
|
extensions: []
|
186
186
|
extra_rdoc_files: []
|
187
187
|
files:
|
188
|
-
- ".
|
188
|
+
- ".github/workflows/gem-push.yml"
|
189
|
+
- ".github/workflows/test.yml"
|
189
190
|
- ".gitignore"
|
190
191
|
- ".rspec"
|
191
192
|
- Appraisals
|
@@ -195,6 +196,7 @@ files:
|
|
195
196
|
- Rakefile
|
196
197
|
- gemfiles/activesupport_5_2.gemfile
|
197
198
|
- gemfiles/activesupport_6_0.gemfile
|
199
|
+
- gemfiles/activesupport_6_1.gemfile
|
198
200
|
- gemfiles/activesupport_7_0.gemfile
|
199
201
|
- iknow_params.gemspec
|
200
202
|
- lib/iknow_params.rb
|
@@ -229,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
229
231
|
- !ruby/object:Gem::Version
|
230
232
|
version: '2.5'
|
231
233
|
requirements: []
|
232
|
-
rubygems_version: 3.
|
234
|
+
rubygems_version: 3.1.6
|
233
235
|
signing_key:
|
234
236
|
specification_version: 4
|
235
237
|
summary: Rails parameter parser for iKnow.
|
data/.circleci/config.yml
DELETED
@@ -1,107 +0,0 @@
|
|
1
|
-
version: 2.1
|
2
|
-
|
3
|
-
executors:
|
4
|
-
ruby:
|
5
|
-
parameters:
|
6
|
-
ruby-version:
|
7
|
-
type: string
|
8
|
-
default: "2.6"
|
9
|
-
gemfile:
|
10
|
-
type: string
|
11
|
-
default: "Gemfile"
|
12
|
-
docker:
|
13
|
-
- image: cimg/ruby:<< parameters.ruby-version >>
|
14
|
-
environment:
|
15
|
-
BUNDLE_JOBS: 3
|
16
|
-
BUNDLE_RETRY: 3
|
17
|
-
BUNDLE_PATH: vendor/bundle
|
18
|
-
RAILS_ENV: test
|
19
|
-
BUNDLE_GEMFILE: << parameters.gemfile >>
|
20
|
-
|
21
|
-
jobs:
|
22
|
-
test:
|
23
|
-
parameters:
|
24
|
-
ruby-version:
|
25
|
-
type: string
|
26
|
-
gemfile:
|
27
|
-
type: string
|
28
|
-
executor:
|
29
|
-
name: ruby
|
30
|
-
ruby-version: << parameters.ruby-version >>
|
31
|
-
gemfile: << parameters.gemfile >>
|
32
|
-
parallelism: 1
|
33
|
-
steps:
|
34
|
-
- checkout
|
35
|
-
|
36
|
-
- run:
|
37
|
-
# Remove the non-appraisal gemfile for safety: we never want to use it.
|
38
|
-
name: Prepare bundler
|
39
|
-
command: bundle -v
|
40
|
-
|
41
|
-
- run:
|
42
|
-
name: Compute a gemfile lock
|
43
|
-
command: bundle lock && cp "${BUNDLE_GEMFILE}.lock" /tmp/gem-lock
|
44
|
-
|
45
|
-
- restore_cache:
|
46
|
-
keys:
|
47
|
-
- iknow_params-<< parameters.ruby-version >>-{{ checksum "/tmp/gem-lock" }}
|
48
|
-
- iknow_params-
|
49
|
-
|
50
|
-
- run:
|
51
|
-
name: Bundle Install
|
52
|
-
command: bundle check || bundle install
|
53
|
-
|
54
|
-
- save_cache:
|
55
|
-
key: iknow_params-<< parameters.ruby-version >>-{{ checksum "/tmp/gem-lock" }}
|
56
|
-
paths:
|
57
|
-
- vendor/bundle
|
58
|
-
|
59
|
-
- run:
|
60
|
-
name: Run rspec
|
61
|
-
command: bundle exec rspec --profile 10 --format RspecJunitFormatter --out test_results/rspec.xml --format progress
|
62
|
-
|
63
|
-
- store_test_results:
|
64
|
-
path: test_results
|
65
|
-
|
66
|
-
publish:
|
67
|
-
executor: ruby
|
68
|
-
steps:
|
69
|
-
- checkout
|
70
|
-
- run:
|
71
|
-
name: Setup Rubygems
|
72
|
-
command: |
|
73
|
-
mkdir ~/.gem &&
|
74
|
-
echo -e "---\r\n:rubygems_api_key: $RUBYGEMS_API_KEY" > ~/.gem/credentials &&
|
75
|
-
chmod 0600 ~/.gem/credentials
|
76
|
-
- run:
|
77
|
-
name: Publish to Rubygems
|
78
|
-
command: |
|
79
|
-
gem build iknow_params.gemspec
|
80
|
-
gem push iknow_params-*.gem
|
81
|
-
|
82
|
-
workflows:
|
83
|
-
version: 2.1
|
84
|
-
build:
|
85
|
-
jobs:
|
86
|
-
- test:
|
87
|
-
name: 'ruby 2.5 ActiveSupport 5.2'
|
88
|
-
ruby-version: "2.5"
|
89
|
-
gemfile: gemfiles/activesupport_5_2.gemfile
|
90
|
-
- test:
|
91
|
-
name: 'ruby 2.6 ActiveSupport 5.2'
|
92
|
-
ruby-version: "2.6"
|
93
|
-
gemfile: gemfiles/activesupport_5_2.gemfile
|
94
|
-
- test:
|
95
|
-
name: 'ruby 2.7 ActiveSupport 6.0'
|
96
|
-
ruby-version: "2.7"
|
97
|
-
gemfile: gemfiles/activesupport_6_0.gemfile
|
98
|
-
- test:
|
99
|
-
name: 'ruby 3.1 ActiveSupport 7.0'
|
100
|
-
ruby-version: "3.1"
|
101
|
-
gemfile: gemfiles/activesupport_7_0.gemfile
|
102
|
-
- publish:
|
103
|
-
filters:
|
104
|
-
branches:
|
105
|
-
only: master
|
106
|
-
tags:
|
107
|
-
ignore: /.*/
|