activerecord_nested_scope 1.3.0 → 1.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/ci.yml +23 -5
- data/.gitignore +2 -1
- data/CHANGELOG.md +4 -0
- data/gemfiles/rails50.gemfile +1 -0
- data/gemfiles/rails51.gemfile +1 -0
- data/gemfiles/rails52.gemfile +1 -0
- data/gemfiles/rails60.gemfile +1 -0
- data/gemfiles/rails61.gemfile +1 -0
- data/gemfiles/rails70.gemfile +1 -0
- data/gemfiles/rails71.gemfile +6 -0
- data/lib/activerecord_nested_scope/builder.rb +2 -0
- data/lib/activerecord_nested_scope/extension.rb +2 -0
- data/lib/activerecord_nested_scope/node.rb +2 -0
- data/lib/activerecord_nested_scope/railtie.rb +2 -0
- data/lib/activerecord_nested_scope/version.rb +3 -1
- data/lib/activerecord_nested_scope.rb +2 -0
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4e1d7afaabd068cb00ad1d193e1becec005540ae1c9d439bd006dc2b9070d4a
|
4
|
+
data.tar.gz: 4d2ce87e69a41035539a950ff2d2958f6c61eb292dcc497da2ed48a407c1c5c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e352d2bf3c9e91a4c9d3b662300b250eb850ad1b2dffb207b38ec5faac2610c4fd47c05b4559d08f5032204b87f11bf0b962cd286b591ec66e2541d013b7c53f
|
7
|
+
data.tar.gz: cde7f419a074982e793500eab5a4a65f737138bfc066dfb7c71437adfa4ae8a91dadf85a9ca3162acc51643b9e227db3388da2e07261543937cdb714ebeabb51
|
data/.github/workflows/ci.yml
CHANGED
@@ -4,10 +4,10 @@ on: [push, pull_request]
|
|
4
4
|
|
5
5
|
jobs:
|
6
6
|
test:
|
7
|
-
runs-on: ubuntu-
|
7
|
+
runs-on: ubuntu-22.04
|
8
8
|
services:
|
9
9
|
postgres:
|
10
|
-
image: postgres:
|
10
|
+
image: postgres:15
|
11
11
|
env:
|
12
12
|
POSTGRES_USER: postgres
|
13
13
|
POSTGRES_PASSWORD: postgres
|
@@ -24,8 +24,8 @@ jobs:
|
|
24
24
|
strategy:
|
25
25
|
fail-fast: false
|
26
26
|
matrix:
|
27
|
-
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1]
|
28
|
-
gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70']
|
27
|
+
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
|
28
|
+
gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70', 'rails71']
|
29
29
|
database: ['sqlite', 'mysql', 'postgresql']
|
30
30
|
exclude:
|
31
31
|
- ruby: 2.4
|
@@ -34,10 +34,16 @@ jobs:
|
|
34
34
|
gemfile: rails61
|
35
35
|
- ruby: 2.4
|
36
36
|
gemfile: rails70
|
37
|
+
- ruby: 2.4
|
38
|
+
gemfile: rails71
|
37
39
|
- ruby: 2.5
|
38
40
|
gemfile: rails70
|
41
|
+
- ruby: 2.5
|
42
|
+
gemfile: rails71
|
39
43
|
- ruby: 2.6
|
40
44
|
gemfile: rails70
|
45
|
+
- ruby: 2.6
|
46
|
+
gemfile: rails71
|
41
47
|
- ruby: 3.0
|
42
48
|
gemfile: rails50
|
43
49
|
- ruby: 3.0
|
@@ -50,6 +56,18 @@ jobs:
|
|
50
56
|
gemfile: rails51
|
51
57
|
- ruby: 3.1
|
52
58
|
gemfile: rails52
|
59
|
+
- ruby: 3.2
|
60
|
+
gemfile: rails50
|
61
|
+
- ruby: 3.2
|
62
|
+
gemfile: rails51
|
63
|
+
- ruby: 3.2
|
64
|
+
gemfile: rails52
|
65
|
+
- ruby: 3.3
|
66
|
+
gemfile: rails50
|
67
|
+
- ruby: 3.3
|
68
|
+
gemfile: rails51
|
69
|
+
- ruby: 3.3
|
70
|
+
gemfile: rails52
|
53
71
|
|
54
72
|
name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}, ${{ matrix.database }}
|
55
73
|
|
@@ -60,7 +78,7 @@ jobs:
|
|
60
78
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
61
79
|
|
62
80
|
steps:
|
63
|
-
- uses: actions/checkout@
|
81
|
+
- uses: actions/checkout@v4
|
64
82
|
- uses: ruby/setup-ruby@v1
|
65
83
|
with:
|
66
84
|
ruby-version: ${{ matrix.ruby }}
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/gemfiles/rails50.gemfile
CHANGED
data/gemfiles/rails51.gemfile
CHANGED
data/gemfiles/rails52.gemfile
CHANGED
data/gemfiles/rails60.gemfile
CHANGED
data/gemfiles/rails61.gemfile
CHANGED
data/gemfiles/rails70.gemfile
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord_nested_scope
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoshikazu Kaneta
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -145,6 +145,7 @@ files:
|
|
145
145
|
- gemfiles/rails60.gemfile
|
146
146
|
- gemfiles/rails61.gemfile
|
147
147
|
- gemfiles/rails70.gemfile
|
148
|
+
- gemfiles/rails71.gemfile
|
148
149
|
- lib/activerecord_nested_scope.rb
|
149
150
|
- lib/activerecord_nested_scope/builder.rb
|
150
151
|
- lib/activerecord_nested_scope/extension.rb
|
@@ -154,7 +155,7 @@ files:
|
|
154
155
|
homepage: https://github.com/kanety/activerecord_nested_scope
|
155
156
|
licenses: []
|
156
157
|
metadata: {}
|
157
|
-
post_install_message:
|
158
|
+
post_install_message:
|
158
159
|
rdoc_options: []
|
159
160
|
require_paths:
|
160
161
|
- lib
|
@@ -169,8 +170,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
170
|
- !ruby/object:Gem::Version
|
170
171
|
version: '0'
|
171
172
|
requirements: []
|
172
|
-
rubygems_version: 3.
|
173
|
-
signing_key:
|
173
|
+
rubygems_version: 3.3.3
|
174
|
+
signing_key:
|
174
175
|
specification_version: 4
|
175
176
|
summary: An ActiveRecord extension to build nested scopes
|
176
177
|
test_files: []
|