edge_rider 2.4.0 → 3.0.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/test.yml +19 -8
- data/CHANGELOG.md +10 -0
- data/Gemfile +1 -1
- data/Gemfile.6.1.pg.lock +2 -2
- data/Gemfile.7.0.pg.lock +2 -2
- data/Gemfile.7.1.pg.lock +2 -2
- data/Gemfile.7.2.pg +1 -1
- data/Gemfile.7.2.pg.lock +16 -9
- data/Gemfile.8.0.pg +1 -1
- data/Gemfile.8.0.pg.lock +17 -9
- data/Gemfile.8.1.pg +17 -0
- data/Gemfile.8.1.pg.lock +106 -0
- data/Gemfile.lock +1 -1
- data/edge_rider.gemspec +1 -1
- data/lib/edge_rider/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89c58c73902dc1fb230ef750890222d8cb1c07485f081b04209a245a27b8e48a
|
|
4
|
+
data.tar.gz: 99a48339ceebeb9eacf4b24a54aaa11866e322c2b9324adb30c00fd3e83b54fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef15fa9dd9e60c15bcca9d6196854d4fc24d8ccebd9c3c2a037e50d298cb8ca79696aa122e743fce525ec664bf714d1d6bfba33a0c38d2387badd0246707c196
|
|
7
|
+
data.tar.gz: b107e2454ade349c7156c8667a98d58bac7eb33172686a65329272e88987fd393b456ecb29da318c587284535636aa2a4a4ad7db34dd97ce941343ea4761a3c2
|
data/.github/workflows/test.yml
CHANGED
|
@@ -23,32 +23,43 @@ jobs:
|
|
|
23
23
|
fail-fast: false
|
|
24
24
|
matrix:
|
|
25
25
|
include:
|
|
26
|
+
# legacy - If a version breaks, just drop it - don't fix it.
|
|
26
27
|
- ruby: 2.7.4
|
|
27
28
|
gemfile: Gemfile.6.1.pg
|
|
28
|
-
- ruby: 3.2.1
|
|
29
|
-
gemfile: Gemfile.6.1.pg
|
|
30
29
|
- ruby: 2.7.4
|
|
31
30
|
gemfile: Gemfile.7.0.pg
|
|
32
31
|
- ruby: 2.7.4
|
|
33
32
|
gemfile: Gemfile.7.1.pg
|
|
33
|
+
- ruby: 3.2.1
|
|
34
|
+
gemfile: Gemfile.6.1.pg
|
|
34
35
|
- ruby: 3.2.1
|
|
35
36
|
gemfile: Gemfile.7.0.pg
|
|
37
|
+
|
|
38
|
+
# Officially supported
|
|
39
|
+
- ruby: 3.2.1
|
|
40
|
+
gemfile: Gemfile.7.2.pg
|
|
36
41
|
- ruby: 3.2.1
|
|
37
42
|
gemfile: Gemfile.8.0.pg
|
|
38
|
-
- ruby: 3.
|
|
39
|
-
gemfile: Gemfile.
|
|
40
|
-
- ruby: 3.3.6
|
|
41
|
-
gemfile: Gemfile.7.1.pg
|
|
43
|
+
- ruby: 3.2.1
|
|
44
|
+
gemfile: Gemfile.8.1.pg
|
|
42
45
|
- ruby: 3.3.6
|
|
43
46
|
gemfile: Gemfile.7.2.pg
|
|
44
47
|
- ruby: 3.3.6
|
|
45
48
|
gemfile: Gemfile.8.0.pg
|
|
46
|
-
- ruby: 3.
|
|
47
|
-
gemfile: Gemfile.
|
|
49
|
+
- ruby: 3.3.6
|
|
50
|
+
gemfile: Gemfile.8.1.pg
|
|
48
51
|
- ruby: 3.4.1
|
|
49
52
|
gemfile: Gemfile.7.2.pg
|
|
50
53
|
- ruby: 3.4.1
|
|
51
54
|
gemfile: Gemfile.8.0.pg
|
|
55
|
+
- ruby: 3.4.1
|
|
56
|
+
gemfile: Gemfile.8.1.pg
|
|
57
|
+
- ruby: 4.0.0
|
|
58
|
+
gemfile: Gemfile.7.2.pg
|
|
59
|
+
- ruby: 4.0.0
|
|
60
|
+
gemfile: Gemfile.8.0.pg
|
|
61
|
+
- ruby: 4.0.0
|
|
62
|
+
gemfile: Gemfile.8.1.pg
|
|
52
63
|
env:
|
|
53
64
|
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
|
54
65
|
steps:
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
10
10
|
### Compatible changes
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 3.0.0 - 2026-03-12
|
|
14
|
+
|
|
15
|
+
### Breaking changes
|
|
16
|
+
- Drop support for Ruby < 2.7
|
|
17
|
+
|
|
18
|
+
### Compatible changes
|
|
19
|
+
- Add support for Ruby 4.0
|
|
20
|
+
- Add support for Rails 8.1
|
|
21
|
+
|
|
22
|
+
|
|
13
23
|
## 2.4.0 - 2025-01-29
|
|
14
24
|
|
|
15
25
|
### Breaking changes
|
data/Gemfile
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Gemfile.6.1.pg
|
data/Gemfile.6.1.pg.lock
CHANGED
data/Gemfile.7.0.pg.lock
CHANGED
data/Gemfile.7.1.pg.lock
CHANGED
data/Gemfile.7.2.pg
CHANGED
data/Gemfile.7.2.pg.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
edge_rider (
|
|
4
|
+
edge_rider (3.0.0)
|
|
5
5
|
activerecord (>= 3.2)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -28,7 +28,8 @@ GEM
|
|
|
28
28
|
base64 (0.2.0)
|
|
29
29
|
benchmark (0.4.0)
|
|
30
30
|
bigdecimal (3.1.8)
|
|
31
|
-
byebug (
|
|
31
|
+
byebug (13.0.0)
|
|
32
|
+
reline (>= 0.6.0)
|
|
32
33
|
coderay (1.1.3)
|
|
33
34
|
concurrent-ruby (1.3.4)
|
|
34
35
|
connection_pool (2.4.1)
|
|
@@ -48,17 +49,24 @@ GEM
|
|
|
48
49
|
activerecord
|
|
49
50
|
i18n (1.14.6)
|
|
50
51
|
concurrent-ruby (~> 1.0)
|
|
52
|
+
io-console (0.8.2)
|
|
51
53
|
logger (1.6.1)
|
|
52
54
|
method_source (1.1.0)
|
|
53
|
-
minitest (
|
|
55
|
+
minitest (6.0.2)
|
|
56
|
+
drb (~> 2.0)
|
|
57
|
+
prism (~> 1.5)
|
|
54
58
|
pg (1.5.9)
|
|
55
|
-
|
|
59
|
+
prism (1.9.0)
|
|
60
|
+
pry (0.16.0)
|
|
56
61
|
coderay (~> 1.1)
|
|
57
62
|
method_source (~> 1.0)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
63
|
+
reline (>= 0.6.0)
|
|
64
|
+
pry-byebug (3.12.0)
|
|
65
|
+
byebug (~> 13.0)
|
|
66
|
+
pry (>= 0.13, < 0.17)
|
|
61
67
|
rake (13.2.1)
|
|
68
|
+
reline (0.6.3)
|
|
69
|
+
io-console (~> 0.5)
|
|
62
70
|
rspec (3.13.0)
|
|
63
71
|
rspec-core (~> 3.13.0)
|
|
64
72
|
rspec-expectations (~> 3.13.0)
|
|
@@ -79,7 +87,6 @@ GEM
|
|
|
79
87
|
|
|
80
88
|
PLATFORMS
|
|
81
89
|
ruby
|
|
82
|
-
x86_64-linux
|
|
83
90
|
|
|
84
91
|
DEPENDENCIES
|
|
85
92
|
activerecord (~> 7.2.2)
|
|
@@ -89,7 +96,7 @@ DEPENDENCIES
|
|
|
89
96
|
gemika (>= 0.8.1)
|
|
90
97
|
has_defaults
|
|
91
98
|
pg (>= 1.3)
|
|
92
|
-
pry-byebug (>= 3.
|
|
99
|
+
pry-byebug (>= 3.11.0)
|
|
93
100
|
rake
|
|
94
101
|
rspec
|
|
95
102
|
|
data/Gemfile.8.0.pg
CHANGED
data/Gemfile.8.0.pg.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
edge_rider (
|
|
4
|
+
edge_rider (3.0.0)
|
|
5
5
|
activerecord (>= 3.2)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -29,7 +29,8 @@ GEM
|
|
|
29
29
|
base64 (0.2.0)
|
|
30
30
|
benchmark (0.4.0)
|
|
31
31
|
bigdecimal (3.1.9)
|
|
32
|
-
byebug (
|
|
32
|
+
byebug (13.0.0)
|
|
33
|
+
reline (>= 0.6.0)
|
|
33
34
|
coderay (1.1.3)
|
|
34
35
|
concurrent-ruby (1.3.5)
|
|
35
36
|
connection_pool (2.5.0)
|
|
@@ -49,17 +50,24 @@ GEM
|
|
|
49
50
|
activerecord
|
|
50
51
|
i18n (1.14.7)
|
|
51
52
|
concurrent-ruby (~> 1.0)
|
|
53
|
+
io-console (0.8.2)
|
|
52
54
|
logger (1.6.5)
|
|
53
55
|
method_source (1.1.0)
|
|
54
|
-
minitest (
|
|
56
|
+
minitest (6.0.2)
|
|
57
|
+
drb (~> 2.0)
|
|
58
|
+
prism (~> 1.5)
|
|
55
59
|
pg (1.5.9)
|
|
56
|
-
|
|
60
|
+
prism (1.9.0)
|
|
61
|
+
pry (0.16.0)
|
|
57
62
|
coderay (~> 1.1)
|
|
58
63
|
method_source (~> 1.0)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
64
|
+
reline (>= 0.6.0)
|
|
65
|
+
pry-byebug (3.12.0)
|
|
66
|
+
byebug (~> 13.0)
|
|
67
|
+
pry (>= 0.13, < 0.17)
|
|
62
68
|
rake (13.2.1)
|
|
69
|
+
reline (0.6.3)
|
|
70
|
+
io-console (~> 0.5)
|
|
63
71
|
rspec (3.13.0)
|
|
64
72
|
rspec-core (~> 3.13.0)
|
|
65
73
|
rspec-expectations (~> 3.13.0)
|
|
@@ -80,7 +88,7 @@ GEM
|
|
|
80
88
|
uri (1.0.2)
|
|
81
89
|
|
|
82
90
|
PLATFORMS
|
|
83
|
-
|
|
91
|
+
ruby
|
|
84
92
|
|
|
85
93
|
DEPENDENCIES
|
|
86
94
|
activerecord (~> 8.0.0)
|
|
@@ -90,7 +98,7 @@ DEPENDENCIES
|
|
|
90
98
|
gemika (>= 0.8.1)
|
|
91
99
|
has_defaults
|
|
92
100
|
pg (>= 1.3)
|
|
93
|
-
pry-byebug (>= 3.
|
|
101
|
+
pry-byebug (>= 3.11.0)
|
|
94
102
|
rake
|
|
95
103
|
rspec
|
|
96
104
|
|
data/Gemfile.8.1.pg
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
# Runtime dependencies
|
|
4
|
+
gem 'activerecord', '~>8.1.0'
|
|
5
|
+
gem 'pg', '>=1.3'
|
|
6
|
+
|
|
7
|
+
# Development dependencies
|
|
8
|
+
gem 'rake'
|
|
9
|
+
gem 'database_cleaner'
|
|
10
|
+
gem 'has_defaults' # used by test models
|
|
11
|
+
gem 'rspec'
|
|
12
|
+
gem 'gemika', '>=0.8.1'
|
|
13
|
+
gem 'pry-byebug', '>=3.11.0'
|
|
14
|
+
gem 'db-query-matchers'
|
|
15
|
+
|
|
16
|
+
# Gem under test
|
|
17
|
+
gem 'edge_rider', path: '.'
|
data/Gemfile.8.1.pg.lock
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
edge_rider (3.0.0)
|
|
5
|
+
activerecord (>= 3.2)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
activemodel (8.1.2)
|
|
11
|
+
activesupport (= 8.1.2)
|
|
12
|
+
activerecord (8.1.2)
|
|
13
|
+
activemodel (= 8.1.2)
|
|
14
|
+
activesupport (= 8.1.2)
|
|
15
|
+
timeout (>= 0.4.0)
|
|
16
|
+
activesupport (8.1.2)
|
|
17
|
+
base64
|
|
18
|
+
bigdecimal
|
|
19
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
20
|
+
connection_pool (>= 2.2.5)
|
|
21
|
+
drb
|
|
22
|
+
i18n (>= 1.6, < 2)
|
|
23
|
+
json
|
|
24
|
+
logger (>= 1.4.2)
|
|
25
|
+
minitest (>= 5.1)
|
|
26
|
+
securerandom (>= 0.3)
|
|
27
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
28
|
+
uri (>= 0.13.1)
|
|
29
|
+
base64 (0.3.0)
|
|
30
|
+
bigdecimal (4.0.1)
|
|
31
|
+
byebug (13.0.0)
|
|
32
|
+
reline (>= 0.6.0)
|
|
33
|
+
coderay (1.1.3)
|
|
34
|
+
concurrent-ruby (1.3.6)
|
|
35
|
+
connection_pool (3.0.2)
|
|
36
|
+
database_cleaner (2.1.0)
|
|
37
|
+
database_cleaner-active_record (>= 2, < 3)
|
|
38
|
+
database_cleaner-active_record (2.2.2)
|
|
39
|
+
activerecord (>= 5.a)
|
|
40
|
+
database_cleaner-core (~> 2.0)
|
|
41
|
+
database_cleaner-core (2.0.1)
|
|
42
|
+
db-query-matchers (0.15.0)
|
|
43
|
+
activesupport (>= 4.0)
|
|
44
|
+
rspec (>= 3.0)
|
|
45
|
+
diff-lcs (1.6.2)
|
|
46
|
+
drb (2.2.3)
|
|
47
|
+
gemika (2.0.0)
|
|
48
|
+
has_defaults (1.3.0)
|
|
49
|
+
activerecord
|
|
50
|
+
i18n (1.14.8)
|
|
51
|
+
concurrent-ruby (~> 1.0)
|
|
52
|
+
io-console (0.8.2)
|
|
53
|
+
json (2.18.1)
|
|
54
|
+
logger (1.7.0)
|
|
55
|
+
method_source (1.1.0)
|
|
56
|
+
minitest (6.0.2)
|
|
57
|
+
drb (~> 2.0)
|
|
58
|
+
prism (~> 1.5)
|
|
59
|
+
pg (1.6.3-x86_64-linux)
|
|
60
|
+
prism (1.9.0)
|
|
61
|
+
pry (0.16.0)
|
|
62
|
+
coderay (~> 1.1)
|
|
63
|
+
method_source (~> 1.0)
|
|
64
|
+
reline (>= 0.6.0)
|
|
65
|
+
pry-byebug (3.12.0)
|
|
66
|
+
byebug (~> 13.0)
|
|
67
|
+
pry (>= 0.13, < 0.17)
|
|
68
|
+
rake (13.3.1)
|
|
69
|
+
reline (0.6.3)
|
|
70
|
+
io-console (~> 0.5)
|
|
71
|
+
rspec (3.13.2)
|
|
72
|
+
rspec-core (~> 3.13.0)
|
|
73
|
+
rspec-expectations (~> 3.13.0)
|
|
74
|
+
rspec-mocks (~> 3.13.0)
|
|
75
|
+
rspec-core (3.13.6)
|
|
76
|
+
rspec-support (~> 3.13.0)
|
|
77
|
+
rspec-expectations (3.13.5)
|
|
78
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
79
|
+
rspec-support (~> 3.13.0)
|
|
80
|
+
rspec-mocks (3.13.7)
|
|
81
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
82
|
+
rspec-support (~> 3.13.0)
|
|
83
|
+
rspec-support (3.13.7)
|
|
84
|
+
securerandom (0.4.1)
|
|
85
|
+
timeout (0.6.0)
|
|
86
|
+
tzinfo (2.0.6)
|
|
87
|
+
concurrent-ruby (~> 1.0)
|
|
88
|
+
uri (1.1.1)
|
|
89
|
+
|
|
90
|
+
PLATFORMS
|
|
91
|
+
ruby
|
|
92
|
+
|
|
93
|
+
DEPENDENCIES
|
|
94
|
+
activerecord (~> 8.1.0)
|
|
95
|
+
database_cleaner
|
|
96
|
+
db-query-matchers
|
|
97
|
+
edge_rider!
|
|
98
|
+
gemika (>= 0.8.1)
|
|
99
|
+
has_defaults
|
|
100
|
+
pg (>= 1.3)
|
|
101
|
+
pry-byebug (>= 3.11.0)
|
|
102
|
+
rake
|
|
103
|
+
rspec
|
|
104
|
+
|
|
105
|
+
BUNDLED WITH
|
|
106
|
+
2.4.7
|
data/Gemfile.lock
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Gemfile.6.1.pg.lock
|
data/edge_rider.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require "edge_rider/version"
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'edge_rider'
|
|
7
7
|
spec.version = EdgeRider::VERSION
|
|
8
|
-
spec.required_ruby_version = '>= 2.
|
|
8
|
+
spec.required_ruby_version = '>= 2.7.4'
|
|
9
9
|
spec.authors = ['Henning Koch']
|
|
10
10
|
spec.email = ['henning.koch@makandra.de']
|
|
11
11
|
|
data/lib/edge_rider/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edge_rider
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henning Koch
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activerecord
|
|
@@ -47,6 +46,8 @@ files:
|
|
|
47
46
|
- Gemfile.7.2.pg.lock
|
|
48
47
|
- Gemfile.8.0.pg
|
|
49
48
|
- Gemfile.8.0.pg.lock
|
|
49
|
+
- Gemfile.8.1.pg
|
|
50
|
+
- Gemfile.8.1.pg.lock
|
|
50
51
|
- Gemfile.lock
|
|
51
52
|
- LICENSE
|
|
52
53
|
- README.md
|
|
@@ -68,7 +69,6 @@ licenses:
|
|
|
68
69
|
- MIT
|
|
69
70
|
metadata:
|
|
70
71
|
rubygems_mfa_required: 'true'
|
|
71
|
-
post_install_message:
|
|
72
72
|
rdoc_options: []
|
|
73
73
|
require_paths:
|
|
74
74
|
- lib
|
|
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
requirements:
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: 2.
|
|
79
|
+
version: 2.7.4
|
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - ">="
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
rubygems_version:
|
|
87
|
-
signing_key:
|
|
86
|
+
rubygems_version: 4.0.6
|
|
88
87
|
specification_version: 4
|
|
89
88
|
summary: Power tools for ActiveRecord relations (scopes)
|
|
90
89
|
test_files: []
|