edge_rider 1.1.0 → 2.1.1

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: 9c9ae54cb1c626a978a21ae71fb21049cbc411bc41f0f5b2651b0ad021fce5d8
4
- data.tar.gz: 8d6ac8d94078882641a29e7cf3e6ad3ef72d2e09b6af036ceba87fea9ee67c5f
3
+ metadata.gz: a0b634913f8146405a9b1148a5f197120abbb04037d30372cac424898f4cc9cc
4
+ data.tar.gz: '0291cb5f5545a7454e39fa8ec77b2aea0f7ca3515380c9813928d4d78a86e78c'
5
5
  SHA512:
6
- metadata.gz: 58093961cabe247323cccccb9b119fb572b63a6e0d977a5b93774b4dbfeeaf8da30d2bbed48682171db6a99c9ba6f41caf4cfa5969255eabdb1078da8cea3d33
7
- data.tar.gz: e68386960e037f56bb54605c63a1d8f3beffca8c7348016a9d650a62a65e7568879fb89c4953a2fd65d6c131a9d9c6d61e4707dde2c719be07486bc3add50877
6
+ metadata.gz: b04c4ad4348e269873cbc439e771066e2b742e64918baffd9027c375d41c07b5983d430293a653ee7aad3a863b194e9a3504a6758b36fe3be5ebdc031aea003d
7
+ data.tar.gz: 19bdb082c59ec1a418839f93b3b9c66c08a469496f75235c17bfccd75de85e9aa2f781a8e7225d1b515d59b7e0a1033ab7ce1dbca4b1adb2142f610dd7a69da9
@@ -0,0 +1,104 @@
1
+ ---
2
+ name: Tests
3
+ 'on':
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches:
9
+ - master
10
+ jobs:
11
+ test_mysql:
12
+ runs-on: ubuntu-20.04
13
+ services:
14
+ mysql:
15
+ image: mysql:5.6
16
+ env:
17
+ MYSQL_ROOT_PASSWORD: password
18
+ options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout
19
+ 5s --health-retries 5
20
+ ports:
21
+ - 3306:3306
22
+ strategy:
23
+ fail-fast: false
24
+ # Rails 4.2: Ruby 2.5.7
25
+ # Rails 5.2: Ruby 2.5.7 and 2.7.4
26
+ matrix:
27
+ include:
28
+ - ruby: 2.5.7
29
+ gemfile: Gemfile.4.2.mysql2
30
+ - ruby: 2.5.7
31
+ gemfile: Gemfile.5.2.mysql2
32
+ - ruby: 2.7.4
33
+ gemfile: Gemfile.5.2.mysql2
34
+ env:
35
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
36
+ steps:
37
+ - uses: actions/checkout@v2
38
+ - name: Install ruby
39
+ uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: "${{ matrix.ruby }}"
42
+ - name: Setup database
43
+ run: |
44
+ sudo apt-get update
45
+ sudo apt-get install -y mariadb-client libmariadbclient-dev
46
+ mysql -e 'create database IF NOT EXISTS test;' -u root --password=password -P 3306 -h 127.0.0.1
47
+ - name: Bundle
48
+ run: |
49
+ gem install bundler:2.2.26
50
+ bundle install --no-deployment
51
+ - name: Run tests
52
+ run: bundle exec rspec
53
+ test_pg:
54
+ runs-on: ubuntu-20.04
55
+ services:
56
+ postgres:
57
+ image: postgres
58
+ env:
59
+ POSTGRES_PASSWORD: postgres
60
+ options: "--health-cmd pg_isready --health-interval 10s --health-timeout 5s
61
+ --health-retries 5"
62
+ ports:
63
+ - 5432:5432
64
+ strategy:
65
+ fail-fast: false
66
+ # Rails 4.2: Ruby 2.5.7
67
+ # Rails 5.2: Ruby 2.5.7 and 2.7.4
68
+ # Rails 6.1: Ruby 2.5.7, 2.7.4 and 3.0.2
69
+ matrix:
70
+ include:
71
+ - ruby: 2.5.7
72
+ gemfile: Gemfile.4.2.pg
73
+ - ruby: 2.5.7
74
+ gemfile: Gemfile.5.2.pg
75
+ - ruby: 2.5.7
76
+ gemfile: Gemfile.6.1.pg
77
+ - ruby: 2.7.4
78
+ gemfile: Gemfile.5.2.pg
79
+ - ruby: 2.7.4
80
+ gemfile: Gemfile.6.1.pg
81
+ - ruby: 3.0.2
82
+ gemfile: Gemfile.6.1.pg
83
+ - ruby: 2.7.4
84
+ gemfile: Gemfile.7.0.pg
85
+ - ruby: 3.0.2
86
+ gemfile: Gemfile.7.0.pg
87
+ env:
88
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
89
+ steps:
90
+ - uses: actions/checkout@v2
91
+ - name: Install ruby
92
+ uses: ruby/setup-ruby@v1
93
+ with:
94
+ ruby-version: "${{ matrix.ruby }}"
95
+ - name: Setup database
96
+ run: |
97
+ sudo apt-get install -y postgresql-client
98
+ PGPASSWORD=postgres psql -c 'create database test;' -U postgres -p 5432 -h localhost
99
+ - name: Bundle
100
+ run: |
101
+ gem install bundler:2.2.26
102
+ bundle install --no-deployment
103
+ - name: Run tests
104
+ run: bundle exec rspec
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.3
1
+ 2.5.7
data/CHANGELOG.md CHANGED
@@ -6,28 +6,46 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
6
6
  ## Unreleased
7
7
 
8
8
  ### Breaking changes
9
- -
10
9
 
11
10
  ### Compatible changes
12
- -
13
11
 
14
- ## 1.1.0
12
+
13
+ ## 2.1.0 - 2022-02-24
14
+
15
+ ### Compatible changes
16
+ - Add support for Rails 7.0
17
+ - Activate Rubygems MFA
18
+
19
+
20
+ ## 2.0.0 - 2021-08-24
21
+
22
+ ### Breaking changes
23
+ - Drop support for Ruby < 2.5.0
24
+ - Drop support for Rails < 3.2
25
+
26
+ ### Compatible changes
27
+ - Add support for Rails 6.1
28
+
29
+
30
+ ## 1.1.0 - 2019-12-13
15
31
 
16
32
  ### Compatible changes
17
33
  - Add `preload_association` at instance level. Example: `user.preload_associations(:posts)`
18
34
  - Add support for polymorphic associations in `traverse_association`.
19
35
 
20
- ## 1.0.0
36
+
37
+ ## 1.0.0- 2019-06-12
21
38
 
22
39
  ### Breaking changes
23
- - Remove support for Ruby 1.8.7
40
+ - Remove support for Ruby 2.2
24
41
  - Remove support for Rails 2.3
25
42
 
26
43
  ### Compatible changes
27
44
  - Add support for Ruby 2.5.3
28
45
  - Add support for Rails 6.0.0.rc1
29
46
 
30
- ## 0.3.3
47
+
48
+ ## 0.3.3 - 2018-08-29
31
49
 
32
50
  ### Compatible changes
33
51
 
data/Gemfile ADDED
@@ -0,0 +1 @@
1
+ Gemfile.6.1.pg
data/Gemfile.4.2.mysql2 CHANGED
@@ -2,15 +2,16 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
4
  gem 'activerecord', '~>4.2.0'
5
- gem 'mysql2', '~> 0.3.17'
5
+ gem 'mysql2', '~>0.4.10'
6
6
 
7
7
  # Development dependencies
8
8
  gem 'rake'
9
9
  gem 'database_cleaner'
10
10
  gem 'has_defaults' # used by test models
11
11
  gem 'rspec'
12
- gem 'gemika'
12
+ gem 'gemika', '>=0.5.0'
13
13
  gem 'pry-byebug'
14
+ gem 'db-query-matchers'
14
15
 
15
16
  # Gem under test
16
17
  gem 'edge_rider', path: '.'
@@ -1,39 +1,42 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- edge_rider (1.1.0)
4
+ edge_rider (2.1.0)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (4.2.7.1)
11
- activesupport (= 4.2.7.1)
10
+ activemodel (4.2.11)
11
+ activesupport (= 4.2.11)
12
12
  builder (~> 3.1)
13
- activerecord (4.2.7.1)
14
- activemodel (= 4.2.7.1)
15
- activesupport (= 4.2.7.1)
13
+ activerecord (4.2.11)
14
+ activemodel (= 4.2.11)
15
+ activesupport (= 4.2.11)
16
16
  arel (~> 6.0)
17
- activesupport (4.2.7.1)
17
+ activesupport (4.2.11)
18
18
  i18n (~> 0.7)
19
- json (~> 1.7, >= 1.7.7)
20
19
  minitest (~> 5.1)
21
20
  thread_safe (~> 0.3, >= 0.3.4)
22
21
  tzinfo (~> 1.1)
23
- arel (6.0.3)
24
- builder (3.2.2)
22
+ arel (6.0.4)
23
+ builder (3.2.4)
25
24
  byebug (10.0.2)
26
25
  coderay (1.1.2)
26
+ concurrent-ruby (1.1.9)
27
27
  database_cleaner (1.0.1)
28
+ db-query-matchers (0.10.0)
29
+ activesupport (>= 4.0, < 7)
30
+ rspec (~> 3.0)
28
31
  diff-lcs (1.2.5)
29
- gemika (0.4.0)
32
+ gemika (0.6.1)
30
33
  has_defaults (0.4.4)
31
34
  activerecord
32
- i18n (0.7.0)
33
- json (1.8.3)
35
+ i18n (0.9.5)
36
+ concurrent-ruby (~> 1.0)
34
37
  method_source (0.9.2)
35
- minitest (5.9.1)
36
- mysql2 (0.3.21)
38
+ minitest (5.14.4)
39
+ mysql2 (0.4.10)
37
40
  pry (0.12.2)
38
41
  coderay (~> 1.1.0)
39
42
  method_source (~> 0.9.0)
@@ -54,8 +57,8 @@ GEM
54
57
  diff-lcs (>= 1.2.0, < 2.0)
55
58
  rspec-support (~> 3.5.0)
56
59
  rspec-support (3.5.0)
57
- thread_safe (0.3.5)
58
- tzinfo (1.2.2)
60
+ thread_safe (0.3.6)
61
+ tzinfo (1.2.9)
59
62
  thread_safe (~> 0.1)
60
63
 
61
64
  PLATFORMS
@@ -64,13 +67,14 @@ PLATFORMS
64
67
  DEPENDENCIES
65
68
  activerecord (~> 4.2.0)
66
69
  database_cleaner
70
+ db-query-matchers
67
71
  edge_rider!
68
- gemika
72
+ gemika (>= 0.5.0)
69
73
  has_defaults
70
- mysql2 (~> 0.3.17)
74
+ mysql2 (~> 0.4.10)
71
75
  pry-byebug
72
76
  rake
73
77
  rspec
74
78
 
75
79
  BUNDLED WITH
76
- 1.17.3
80
+ 2.2.32
data/Gemfile.4.2.pg CHANGED
@@ -9,8 +9,9 @@ gem 'rake'
9
9
  gem 'database_cleaner'
10
10
  gem 'rspec'
11
11
  gem 'has_defaults' # used by test models
12
- gem 'gemika'
12
+ gem 'gemika', '>=0.5.0'
13
13
  gem 'pry-byebug'
14
+ gem 'db-query-matchers'
14
15
 
15
16
  # Gem under test
16
17
  gem 'edge_rider', path: '.'
data/Gemfile.4.2.pg.lock CHANGED
@@ -1,38 +1,41 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- edge_rider (1.1.0)
4
+ edge_rider (2.1.0)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (4.2.7.1)
11
- activesupport (= 4.2.7.1)
10
+ activemodel (4.2.11)
11
+ activesupport (= 4.2.11)
12
12
  builder (~> 3.1)
13
- activerecord (4.2.7.1)
14
- activemodel (= 4.2.7.1)
15
- activesupport (= 4.2.7.1)
13
+ activerecord (4.2.11)
14
+ activemodel (= 4.2.11)
15
+ activesupport (= 4.2.11)
16
16
  arel (~> 6.0)
17
- activesupport (4.2.7.1)
17
+ activesupport (4.2.11)
18
18
  i18n (~> 0.7)
19
- json (~> 1.7, >= 1.7.7)
20
19
  minitest (~> 5.1)
21
20
  thread_safe (~> 0.3, >= 0.3.4)
22
21
  tzinfo (~> 1.1)
23
- arel (6.0.3)
24
- builder (3.2.2)
22
+ arel (6.0.4)
23
+ builder (3.2.4)
25
24
  byebug (10.0.2)
26
25
  coderay (1.1.2)
26
+ concurrent-ruby (1.1.9)
27
27
  database_cleaner (1.5.3)
28
+ db-query-matchers (0.10.0)
29
+ activesupport (>= 4.0, < 7)
30
+ rspec (~> 3.0)
28
31
  diff-lcs (1.2.5)
29
- gemika (0.4.0)
32
+ gemika (0.6.1)
30
33
  has_defaults (0.4.4)
31
34
  activerecord
32
- i18n (0.7.0)
33
- json (1.8.3)
35
+ i18n (0.9.5)
36
+ concurrent-ruby (~> 1.0)
34
37
  method_source (0.9.2)
35
- minitest (5.9.1)
38
+ minitest (5.14.4)
36
39
  pg (0.19.0)
37
40
  pry (0.12.2)
38
41
  coderay (~> 1.1.0)
@@ -54,8 +57,8 @@ GEM
54
57
  diff-lcs (>= 1.2.0, < 2.0)
55
58
  rspec-support (~> 3.5.0)
56
59
  rspec-support (3.5.0)
57
- thread_safe (0.3.5)
58
- tzinfo (1.2.2)
60
+ thread_safe (0.3.6)
61
+ tzinfo (1.2.9)
59
62
  thread_safe (~> 0.1)
60
63
 
61
64
  PLATFORMS
@@ -64,8 +67,9 @@ PLATFORMS
64
67
  DEPENDENCIES
65
68
  activerecord (~> 4.2.0)
66
69
  database_cleaner
70
+ db-query-matchers
67
71
  edge_rider!
68
- gemika
72
+ gemika (>= 0.5.0)
69
73
  has_defaults
70
74
  pg
71
75
  pry-byebug
@@ -73,4 +77,4 @@ DEPENDENCIES
73
77
  rspec
74
78
 
75
79
  BUNDLED WITH
76
- 1.17.3
80
+ 2.2.32
data/Gemfile.5.2.mysql2 CHANGED
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
4
  gem 'activerecord', '~>5.2.3'
5
- gem 'mysql2'
5
+ gem 'mysql2', '~>0.4.10'
6
6
  gem 'i18n', '<=1.5.1' # Required to support tests for Ruby 2.2.x
7
7
 
8
8
  # Development dependencies
@@ -10,8 +10,9 @@ gem 'rake'
10
10
  gem 'database_cleaner'
11
11
  gem 'rspec'
12
12
  gem 'has_defaults' # used by test models
13
- gem 'gemika'
13
+ gem 'gemika', '>=0.5.0'
14
14
  gem 'pry-byebug'
15
+ gem 'db-query-matchers'
15
16
 
16
17
  # Gem under test
17
18
  gem 'edge_rider', path: '.'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- edge_rider (1.1.0)
4
+ edge_rider (2.1.0)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -23,15 +23,18 @@ GEM
23
23
  coderay (1.1.2)
24
24
  concurrent-ruby (1.1.5)
25
25
  database_cleaner (1.6.1)
26
+ db-query-matchers (0.10.0)
27
+ activesupport (>= 4.0, < 7)
28
+ rspec (~> 3.0)
26
29
  diff-lcs (1.3)
27
- gemika (0.4.0)
30
+ gemika (0.5.0)
28
31
  has_defaults (0.4.4)
29
32
  activerecord
30
33
  i18n (1.5.1)
31
34
  concurrent-ruby (~> 1.0)
32
35
  method_source (0.9.2)
33
36
  minitest (5.11.3)
34
- mysql2 (0.4.6)
37
+ mysql2 (0.4.10)
35
38
  pry (0.12.2)
36
39
  coderay (~> 1.1.0)
37
40
  method_source (~> 0.9.0)
@@ -62,14 +65,15 @@ PLATFORMS
62
65
  DEPENDENCIES
63
66
  activerecord (~> 5.2.3)
64
67
  database_cleaner
68
+ db-query-matchers
65
69
  edge_rider!
66
- gemika
70
+ gemika (>= 0.5.0)
67
71
  has_defaults
68
72
  i18n (<= 1.5.1)
69
- mysql2
73
+ mysql2 (~> 0.4.10)
70
74
  pry-byebug
71
75
  rake
72
76
  rspec
73
77
 
74
78
  BUNDLED WITH
75
- 1.17.3
79
+ 2.2.32
data/Gemfile.5.2.pg CHANGED
@@ -10,8 +10,9 @@ gem 'rake'
10
10
  gem 'database_cleaner'
11
11
  gem 'has_defaults' # used by test models
12
12
  gem 'rspec'
13
- gem 'gemika'
13
+ gem 'gemika', '>=0.5.0'
14
14
  gem 'pry-byebug'
15
+ gem 'db-query-matchers'
15
16
 
16
17
  # Gem under test
17
18
  gem 'edge_rider', path: '.'
data/Gemfile.5.2.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- edge_rider (1.1.0)
4
+ edge_rider (2.1.0)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -23,8 +23,11 @@ GEM
23
23
  coderay (1.1.2)
24
24
  concurrent-ruby (1.1.5)
25
25
  database_cleaner (1.6.1)
26
+ db-query-matchers (0.10.0)
27
+ activesupport (>= 4.0, < 7)
28
+ rspec (~> 3.0)
26
29
  diff-lcs (1.3)
27
- gemika (0.4.0)
30
+ gemika (0.5.0)
28
31
  has_defaults (0.4.4)
29
32
  activerecord
30
33
  i18n (1.5.1)
@@ -62,8 +65,9 @@ PLATFORMS
62
65
  DEPENDENCIES
63
66
  activerecord (~> 5.2.3)
64
67
  database_cleaner
68
+ db-query-matchers
65
69
  edge_rider!
66
- gemika
70
+ gemika (>= 0.5.0)
67
71
  has_defaults
68
72
  i18n (<= 1.5.1)
69
73
  pg
@@ -72,4 +76,4 @@ DEPENDENCIES
72
76
  rspec
73
77
 
74
78
  BUNDLED WITH
75
- 1.17.3
79
+ 2.2.32
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'activerecord', '~>6.0.0.rc1'
4
+ gem 'activerecord', '~>6.1.3'
5
5
  gem 'pg'
6
6
 
7
7
  # Development dependencies
@@ -9,8 +9,9 @@ gem 'rake'
9
9
  gem 'database_cleaner'
10
10
  gem 'has_defaults' # used by test models
11
11
  gem 'rspec'
12
- gem 'gemika'
12
+ gem 'gemika', '>=0.5.0'
13
13
  gem 'pry-byebug'
14
+ gem 'db-query-matchers'
14
15
 
15
16
  # Gem under test
16
17
  gem 'edge_rider', path: '.'
@@ -0,0 +1,82 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ edge_rider (2.1.0)
5
+ activerecord (>= 3.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (6.1.3)
11
+ activesupport (= 6.1.3)
12
+ activerecord (6.1.3)
13
+ activemodel (= 6.1.3)
14
+ activesupport (= 6.1.3)
15
+ activesupport (6.1.3)
16
+ concurrent-ruby (~> 1.0, >= 1.0.2)
17
+ i18n (>= 1.6, < 2)
18
+ minitest (>= 5.1)
19
+ tzinfo (~> 2.0)
20
+ zeitwerk (~> 2.3)
21
+ byebug (11.1.3)
22
+ coderay (1.1.3)
23
+ concurrent-ruby (1.1.8)
24
+ database_cleaner (2.0.1)
25
+ database_cleaner-active_record (~> 2.0.0)
26
+ database_cleaner-active_record (2.0.0)
27
+ activerecord (>= 5.a)
28
+ database_cleaner-core (~> 2.0.0)
29
+ database_cleaner-core (2.0.1)
30
+ db-query-matchers (0.10.0)
31
+ activesupport (>= 4.0, < 7)
32
+ rspec (~> 3.0)
33
+ diff-lcs (1.4.4)
34
+ gemika (0.5.0)
35
+ has_defaults (0.4.4)
36
+ activerecord
37
+ i18n (1.8.9)
38
+ concurrent-ruby (~> 1.0)
39
+ method_source (1.0.0)
40
+ minitest (5.14.4)
41
+ pg (1.2.3)
42
+ pry (0.13.1)
43
+ coderay (~> 1.1)
44
+ method_source (~> 1.0)
45
+ pry-byebug (3.9.0)
46
+ byebug (~> 11.0)
47
+ pry (~> 0.13.0)
48
+ rake (13.0.3)
49
+ rspec (3.10.0)
50
+ rspec-core (~> 3.10.0)
51
+ rspec-expectations (~> 3.10.0)
52
+ rspec-mocks (~> 3.10.0)
53
+ rspec-core (3.10.1)
54
+ rspec-support (~> 3.10.0)
55
+ rspec-expectations (3.10.1)
56
+ diff-lcs (>= 1.2.0, < 2.0)
57
+ rspec-support (~> 3.10.0)
58
+ rspec-mocks (3.10.2)
59
+ diff-lcs (>= 1.2.0, < 2.0)
60
+ rspec-support (~> 3.10.0)
61
+ rspec-support (3.10.2)
62
+ tzinfo (2.0.4)
63
+ concurrent-ruby (~> 1.0)
64
+ zeitwerk (2.4.2)
65
+
66
+ PLATFORMS
67
+ ruby
68
+
69
+ DEPENDENCIES
70
+ activerecord (~> 6.1.3)
71
+ database_cleaner
72
+ db-query-matchers
73
+ edge_rider!
74
+ gemika (>= 0.5.0)
75
+ has_defaults
76
+ pg
77
+ pry-byebug
78
+ rake
79
+ rspec
80
+
81
+ BUNDLED WITH
82
+ 2.3.4
@@ -1,17 +1,17 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'activerecord', '=3.2.22'
5
- gem 'mysql2', '= 0.3.17'
6
- gem 'i18n', '=0.6.11' # 0.7 no longer builds for Ruby 1.8.7
4
+ gem 'activerecord', '~>7.0.1'
5
+ gem 'pg'
7
6
 
8
7
  # Development dependencies
9
- gem 'rake', '=10.0.4'
8
+ gem 'rake'
10
9
  gem 'database_cleaner'
11
- gem 'rspec', '~> 3.4'
12
10
  gem 'has_defaults' # used by test models
13
- gem 'gemika'
11
+ gem 'rspec'
12
+ gem 'gemika', '>=0.5.0'
14
13
  gem 'pry-byebug'
14
+ gem 'db-query-matchers'
15
15
 
16
16
  # Gem under test
17
17
  gem 'edge_rider', path: '.'