komagire 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08112e71017b77c5d9eacece167c6138c2d4aec68f42e00c8634a33290a4875e'
4
- data.tar.gz: 91b7db0ac2005076e2bc25b282ecbc6bd69b5191ebf8e2c23c3ece60eb3575eb
3
+ metadata.gz: 988d8012a47aaf2506de8f64ea89be3e22c577c4b0111336ee77897b8b476982
4
+ data.tar.gz: 73d70d33ec686dc40dff50345dff34de7944df4f81572a79bf4eb68826de1a7a
5
5
  SHA512:
6
- metadata.gz: 3c0602d61599ae90e3dbe61c25ff4716e18f911e3fc3396cbeee21b070c63e941e0a9c18501faed9392146820d34868d286f5ea1471f3955aa3e56542ffc4d2e
7
- data.tar.gz: 48de96f1ab5cc03b6d7e2afc41f24ec34feb839aacb04f70dc739a735e4c4ba5764bf1d0223d28d66c0cbe479a81070fa5835af151790a9bd3a28277dea26bcf
6
+ metadata.gz: f6387495c85c8bb6bfdcfd1f544bf8b461bb3d9c8777ee3f1ab563376c8e564be6a9f1c42b25b070d88b3ce71aa2af0bf2ac6969b65d68f188669b2031b4273e
7
+ data.tar.gz: 6700dcfe4ae6f1ea6b4d3792cfb2cdfe4557b454602527a24d01acdefca988c557bbe95a2b7895bffb22d5bb4036541d98a05681db1341abd2a8005742207ba7
@@ -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
- - ruby-version: '2.6'
18
- rails-version: '7.0'
19
- - ruby-version: '2.7'
20
- rails-version: '5.2'
21
- - ruby-version: '3.0'
22
- rails-version: '5.2'
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` (#13)
6
- - Change required ruby version to 2.6+ (#14)
7
- - Change required rails version to 5.2+ (#14)
8
- - Migrate CI from Travis CI to GitHub Actions (#14)
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
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "~> 7.0.0"
6
- gem "activesupport", "~> 7.0.0"
5
+ gem "activerecord", "~> 7.0.1"
6
+ gem "activesupport", "~> 7.0.1"
7
7
  gem "sqlite3", "~> 1.4"
8
8
 
9
9
  gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Komagire
4
- VERSION = '0.6.0'
4
+ VERSION = '0.7.0'
5
5
  end
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.6.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: 2021-12-21 00:00:00.000000000 Z
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.2
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.