komagire 0.6.0 → 0.7.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/.github/workflows/ruby.yml +11 -7
- data/CHANGELOG.md +8 -4
- data/gemfiles/rails_7.0.gemfile +2 -2
- data/lib/komagire/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 988d8012a47aaf2506de8f64ea89be3e22c577c4b0111336ee77897b8b476982
|
|
4
|
+
data.tar.gz: 73d70d33ec686dc40dff50345dff34de7944df4f81572a79bf4eb68826de1a7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6387495c85c8bb6bfdcfd1f544bf8b461bb3d9c8777ee3f1ab563376c8e564be6a9f1c42b25b070d88b3ce71aa2af0bf2ac6969b65d68f188669b2031b4273e
|
|
7
|
+
data.tar.gz: 6700dcfe4ae6f1ea6b4d3792cfb2cdfe4557b454602527a24d01acdefca988c557bbe95a2b7895bffb22d5bb4036541d98a05681db1341abd2a8005742207ba7
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -11,15 +11,19 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
strategy:
|
|
13
13
|
matrix:
|
|
14
|
-
ruby-version: ['2.6', '2.7', '3.0']
|
|
14
|
+
ruby-version: ['2.6', '2.7', '3.0', '3.1']
|
|
15
15
|
rails-version: ['5.2', '6.0', '6.1', '7.0']
|
|
16
16
|
exclude:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
- ruby-version: '2.6'
|
|
18
|
+
rails-version: '7.0'
|
|
19
|
+
- ruby-version: '2.6'
|
|
20
|
+
rails-version: '7.1'
|
|
21
|
+
- ruby-version: '2.7'
|
|
22
|
+
rails-version: '5.2'
|
|
23
|
+
- ruby-version: '3.0'
|
|
24
|
+
rails-version: '5.2'
|
|
25
|
+
- ruby-version: '3.1'
|
|
26
|
+
rails-version: '5.2'
|
|
23
27
|
|
|
24
28
|
env:
|
|
25
29
|
APPRAISAL: rails_${{ matrix.rails-version }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
## Unreleased
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
- CI against for Ruby 3.1 (#16)
|
|
6
|
+
|
|
3
7
|
## 0.6.0
|
|
4
8
|
|
|
5
|
-
- Avoid needless override in `KeyList#freeze` (#
|
|
6
|
-
- Change required ruby version to 2.6+ (#
|
|
7
|
-
- Change required rails version to 5.2+ (#
|
|
8
|
-
- Migrate CI from Travis CI to GitHub Actions (#
|
|
9
|
+
- Avoid needless override in `KeyList#freeze` (#14)
|
|
10
|
+
- Change required ruby version to 2.6+ (#15)
|
|
11
|
+
- Change required rails version to 5.2+ (#15)
|
|
12
|
+
- Migrate CI from Travis CI to GitHub Actions (#15)
|
|
9
13
|
|
|
10
14
|
## 0.5.0
|
|
11
15
|
|
data/gemfiles/rails_7.0.gemfile
CHANGED
data/lib/komagire/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: komagire
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takumi IINO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -185,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
185
185
|
- !ruby/object:Gem::Version
|
|
186
186
|
version: '0'
|
|
187
187
|
requirements: []
|
|
188
|
-
rubygems_version: 3.1.
|
|
188
|
+
rubygems_version: 3.1.6
|
|
189
189
|
signing_key:
|
|
190
190
|
specification_version: 4
|
|
191
191
|
summary: Compose an object from comma separated keys.
|