rspec-activerecord-expectations 3.0.0 → 3.1.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/main.yml +21 -4
- data/Appraisals +8 -0
- data/CHANGELOG.md +2 -1
- data/gemfiles/rails_8.0.gemfile +9 -0
- data/gemfiles/rails_8.1.gemfile +9 -0
- data/rspec-activerecord-expectations.gemspec +2 -2
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bd2ffc55a12fde36c3b1d7aefd570346d9e2434735e3f5ae52f329c2fc31114
|
|
4
|
+
data.tar.gz: cdad333c517ae5c4d427f3960e14ab0cb21c4ae1bc6cbcbe053020150f3bc75c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5e9338ba56bc84fc44bb927547e0ff0e6cc23c6bdd5796b9f0a04fddd1239a92b6f0540ca7b9e600e930a59e06b831115ead7d2dee6c9712b56503cf766a668
|
|
7
|
+
data.tar.gz: adc54aef027612b8afba94a7627052bbd2a07ce302439a679d6424deb752ddeefeeff400ebefd51974989fa443f05462bc543d8361023eb4684667c2af9e981c
|
data/.github/workflows/main.yml
CHANGED
|
@@ -11,11 +11,28 @@ jobs:
|
|
|
11
11
|
strategy:
|
|
12
12
|
matrix:
|
|
13
13
|
os: [ubuntu-latest, macos-latest]
|
|
14
|
-
ruby-version: ['3.1', '3.0'
|
|
15
|
-
rails: ['
|
|
14
|
+
ruby-version: ['3.1', '3.0']
|
|
15
|
+
rails: ['6.0', '6.1', '7.0', '7.1', '8.0', '8.1']
|
|
16
|
+
exclude:
|
|
17
|
+
- { ruby: '3.1', rails: '8.0' }
|
|
18
|
+
- { ruby: '3.0', rails: '8.0' }
|
|
19
|
+
- { ruby: '3.1', rails: '8.1' }
|
|
20
|
+
- { ruby: '3.0', rails: '8.1' }
|
|
16
21
|
|
|
17
22
|
runs-on: ${{ matrix.os }}
|
|
18
23
|
name: ruby ${{ matrix.ruby-version }}, rails ${{ matrix.rails }}, ${{ matrix.os }}
|
|
24
|
+
services:
|
|
25
|
+
postgres:
|
|
26
|
+
image: postgres
|
|
27
|
+
env:
|
|
28
|
+
POSTGRES_PASSWORD: postgres
|
|
29
|
+
options: >-
|
|
30
|
+
--health-cmd pg_isready
|
|
31
|
+
--health-interval 10s
|
|
32
|
+
--health-timeout 5s
|
|
33
|
+
--health-retries 5
|
|
34
|
+
ports:
|
|
35
|
+
- 5432:5432
|
|
19
36
|
|
|
20
37
|
steps:
|
|
21
38
|
- uses: actions/checkout@v2
|
|
@@ -40,7 +57,7 @@ jobs:
|
|
|
40
57
|
test_legacy:
|
|
41
58
|
strategy:
|
|
42
59
|
matrix:
|
|
43
|
-
ruby-version: ['2.6', '2.5']
|
|
60
|
+
ruby-version: ['2.7', '2.6', '2.5']
|
|
44
61
|
rails: ['5.0', '5.1', '5.2']
|
|
45
62
|
|
|
46
63
|
runs-on: ubuntu-latest
|
|
@@ -94,4 +111,4 @@ jobs:
|
|
|
94
111
|
|
|
95
112
|
- name: Run tests
|
|
96
113
|
run: bundle exec rspec
|
|
97
|
-
|
|
114
|
+
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "rspec-activerecord-expectations"
|
|
3
|
-
spec.version = '3.
|
|
3
|
+
spec.version = '3.1.1'
|
|
4
4
|
spec.authors = ["Joseph Mastey"]
|
|
5
5
|
spec.email = ["hello@joemastey.com"]
|
|
6
6
|
|
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ["lib"]
|
|
24
24
|
|
|
25
|
-
spec.add_dependency "activerecord", ">= 5.0.0", "< 8.
|
|
25
|
+
spec.add_dependency "activerecord", ">= 5.0.0", "< 8.2"
|
|
26
26
|
|
|
27
27
|
spec.add_development_dependency "pg"
|
|
28
28
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-activerecord-expectations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joseph Mastey
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: 5.0.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '8.
|
|
22
|
+
version: '8.2'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: 5.0.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '8.
|
|
32
|
+
version: '8.2'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: pg
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,6 +100,8 @@ files:
|
|
|
100
100
|
- gemfiles/rails_7.0.gemfile
|
|
101
101
|
- gemfiles/rails_7.1.gemfile
|
|
102
102
|
- gemfiles/rails_7.2.gemfile
|
|
103
|
+
- gemfiles/rails_8.0.gemfile
|
|
104
|
+
- gemfiles/rails_8.1.gemfile
|
|
103
105
|
- lib/rspec/activerecord-expectations.rb
|
|
104
106
|
- lib/rspec/activerecord/expectations.rb
|
|
105
107
|
- lib/rspec/activerecord/expectations/collector.rb
|