rspec-activerecord-expectations 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +19 -4
- data/Appraisals +4 -0
- data/CHANGELOG.md +2 -1
- data/gemfiles/rails_8.0.gemfile +9 -0
- data/rspec-activerecord-expectations.gemspec +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c13879549d5977a2f7e67c5138b7d11f97df3be9c63a243c51bc71aaba783d1a
|
4
|
+
data.tar.gz: 9ccf3304d75157a36bc6cc1f82ae00c45bd72141600ec1fb354921a409e0fd7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f88fb7b1af14058e463779e5ec94d7175066e41f2006bb0ce307c072a139780bf5865e640993c1b45ffdaaa826c20774262aa2233aea1bec0213f58d4b49a32
|
7
|
+
data.tar.gz: 00fe2ceba0d426a20788e20a4075247f78b3865d476b801da634b0eca88caa145a659af20268267ad551a7ef2eddefb59393d06a70c01d15ebc86af557ee2961
|
data/.github/workflows/main.yml
CHANGED
@@ -11,11 +11,26 @@ 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']
|
16
|
+
exclude:
|
17
|
+
- { ruby: '3.1', rails: '8.0' }
|
18
|
+
- { ruby: '3.0', rails: '8.0' }
|
16
19
|
|
17
20
|
runs-on: ${{ matrix.os }}
|
18
21
|
name: ruby ${{ matrix.ruby-version }}, rails ${{ matrix.rails }}, ${{ matrix.os }}
|
22
|
+
services:
|
23
|
+
postgres:
|
24
|
+
image: postgres
|
25
|
+
env:
|
26
|
+
POSTGRES_PASSWORD: postgres
|
27
|
+
options: >-
|
28
|
+
--health-cmd pg_isready
|
29
|
+
--health-interval 10s
|
30
|
+
--health-timeout 5s
|
31
|
+
--health-retries 5
|
32
|
+
ports:
|
33
|
+
- 5432:5432
|
19
34
|
|
20
35
|
steps:
|
21
36
|
- uses: actions/checkout@v2
|
@@ -40,7 +55,7 @@ jobs:
|
|
40
55
|
test_legacy:
|
41
56
|
strategy:
|
42
57
|
matrix:
|
43
|
-
ruby-version: ['2.6', '2.5']
|
58
|
+
ruby-version: ['2.7', '2.6', '2.5']
|
44
59
|
rails: ['5.0', '5.1', '5.2']
|
45
60
|
|
46
61
|
runs-on: ubuntu-latest
|
@@ -94,4 +109,4 @@ jobs:
|
|
94
109
|
|
95
110
|
- name: Run tests
|
96
111
|
run: bundle exec rspec
|
97
|
-
|
112
|
+
|
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.0'
|
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.1"
|
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.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joseph Mastey
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-13 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.1'
|
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.1'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: pg
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,6 +100,7 @@ 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
|
103
104
|
- lib/rspec/activerecord-expectations.rb
|
104
105
|
- lib/rspec/activerecord/expectations.rb
|
105
106
|
- lib/rspec/activerecord/expectations/collector.rb
|