parentry 1.4.0 → 1.5.0

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: 66be4e773ca40d1773b87815cf33bd8d6f8cb4796718d64e4bec62ddeb53b3e5
4
- data.tar.gz: 45039c18a5c69ebc0277cf38a48e46d3f17520be92e0409e6d1a4d5872f0b120
3
+ metadata.gz: f3feb70016cb4448fb7a633c183e4c28451779e80f4b17d9f41c9b56e8e4e560
4
+ data.tar.gz: 54c9e48f984205d2ba80c5bd53d745c19c89bd95529c63b7e2f4f2335ce3b89a
5
5
  SHA512:
6
- metadata.gz: '000976a1fecf1bf1b004f44a1943d8f85e6d80b5835a3bb6a50efebd3735e6ee1cd116e8789759fce424130bab1b796a5992526112cf165f1556621c67c2b33f'
7
- data.tar.gz: 136945945ecb766008a7545cadbd68b3d68a7d5bf151168991457831c0ddc1185dd87f89f1f5a78a1711afc046de60d08dd84452999eaec08acbbe30e5c53cb5
6
+ metadata.gz: ad121d565f69446d95ef7db926461dd0c51c28ef981c95b0b02ed8debb6b27f40f7576773f76e31e35336704d9bb3fa5705461e9ef2bc5e02a66e4f542e8a534
7
+ data.tar.gz: 34ed4870c5f7fed79a0558df2e4db01f932690f8e07b935f56c4dfce6343529b6ba2bf69d97a00c039cadc820cd40ae708494bbdf9f8ed6be10c479958852f59
@@ -10,14 +10,12 @@ jobs:
10
10
  strategy:
11
11
  matrix:
12
12
  ruby:
13
- - 2.5.x
14
- - 2.6.x
15
- - 2.7.x
13
+ - '2.7'
14
+ - '3.0'
16
15
  activerecord:
17
- - 5.1.5
18
- - 5.2.0
19
16
  - 6.0.0
20
17
  - 6.1.0
18
+ - 7.0.0
21
19
  strategy:
22
20
  - array
23
21
  - ltree
@@ -41,29 +39,17 @@ jobs:
41
39
  - uses: actions/checkout@v2
42
40
 
43
41
  - name: Set up Ruby
44
- uses: actions/setup-ruby@v1
42
+ uses: ruby/setup-ruby@v1
45
43
  with:
46
44
  ruby-version: ${{ matrix.ruby }}
47
-
48
- - uses: actions/cache@v1
49
- with:
50
- path: vendor/bundle
51
- key: ${{ runner.os }}-gems-${{ hashFiles(format('gemfiles/activerecord_{0}.gemfile.lock', matrix.activerecord)) }}
52
- restore-keys: |
53
- ${{ runner.os }}-gems-
45
+ bundler-cache: true
54
46
 
55
47
  - name: Install PostgreSQL client
56
48
  run: |
57
49
  sudo apt-get -yqq install libpq-dev
58
50
 
59
- - name: Configure Bundler
60
- run: |
61
- gem install bundler:2.1.4 --no-document
62
- bundle config set path 'vendor/bundle'
63
- bundle install --jobs 4 --retry 3
64
-
65
51
  - name: Run tests with RSpec
66
- uses: paambaati/codeclimate-action@v2.5.4
52
+ uses: paambaati/codeclimate-action@v2.7.5
67
53
  env:
68
54
  CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
69
55
  STRATEGY: ${{ matrix.strategy }}
data/.rubocop.yml CHANGED
@@ -3,7 +3,8 @@ inherit_mode:
3
3
  - Exclude
4
4
 
5
5
  AllCops:
6
- TargetRubyVersion: 2.6
6
+ NewCops: enable
7
+ TargetRubyVersion: 2.5
7
8
  Exclude:
8
9
  - gemfiles/**
9
10
 
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 2.7.2
1
+ ruby 3.0.3
data/Appraisals CHANGED
@@ -1,15 +1,19 @@
1
1
  appraise 'activerecord-5.1.5' do
2
- gem 'activerecord', '5.1.5'
2
+ gem 'activerecord', '~> 5.1', '< 5.2'
3
3
  end
4
4
 
5
5
  appraise 'activerecord-5.2.0' do
6
- gem 'activerecord', '5.2.0'
6
+ gem 'activerecord', '~> 5.2', '< 6'
7
7
  end
8
8
 
9
9
  appraise 'activerecord-6.0.0' do
10
- gem 'activerecord', '6.0.0'
10
+ gem 'activerecord', '~> 6.0', '< 6.1'
11
11
  end
12
12
 
13
13
  appraise 'activerecord-6.1.0' do
14
- gem 'activerecord', '6.0.0'
14
+ gem 'activerecord', '~> 6.1', '< 6.2'
15
+ end
16
+
17
+ appraise 'activerecord-7.0.0' do
18
+ gem 'activerecord', '~> 7.0', '< 7.1'
15
19
  end
@@ -3,6 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "5.1.5"
6
+ gem "activerecord", "~> 5.1", "< 5.2"
7
7
 
8
8
  gemspec path: "../"
@@ -1,143 +1,150 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- parentry (1.3.0)
5
- activerecord (>= 5.1, < 6.2)
4
+ parentry (1.5.0)
5
+ activerecord (>= 5.1, < 7.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (5.1.5)
11
- actionview (= 5.1.5)
12
- activesupport (= 5.1.5)
10
+ actionpack (5.1.7)
11
+ actionview (= 5.1.7)
12
+ activesupport (= 5.1.7)
13
13
  rack (~> 2.0)
14
14
  rack-test (>= 0.6.3)
15
15
  rails-dom-testing (~> 2.0)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- actionview (5.1.5)
18
- activesupport (= 5.1.5)
17
+ actionview (5.1.7)
18
+ activesupport (= 5.1.7)
19
19
  builder (~> 3.1)
20
20
  erubi (~> 1.4)
21
21
  rails-dom-testing (~> 2.0)
22
22
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
- activemodel (5.1.5)
24
- activesupport (= 5.1.5)
25
- activerecord (5.1.5)
26
- activemodel (= 5.1.5)
27
- activesupport (= 5.1.5)
23
+ activemodel (5.1.7)
24
+ activesupport (= 5.1.7)
25
+ activerecord (5.1.7)
26
+ activemodel (= 5.1.7)
27
+ activesupport (= 5.1.7)
28
28
  arel (~> 8.0)
29
- activesupport (5.1.5)
29
+ activesupport (5.1.7)
30
30
  concurrent-ruby (~> 1.0, >= 1.0.2)
31
- i18n (~> 0.7)
31
+ i18n (>= 0.7, < 2)
32
32
  minitest (~> 5.1)
33
33
  tzinfo (~> 1.1)
34
- appraisal (2.2.0)
34
+ appraisal (2.3.0)
35
35
  bundler
36
36
  rake
37
37
  thor (>= 0.14.0)
38
38
  arel (8.0.0)
39
- ast (2.4.0)
40
- builder (3.2.3)
41
- coderay (1.1.2)
42
- combustion (1.1.1)
39
+ ast (2.4.1)
40
+ builder (3.2.4)
41
+ coderay (1.1.3)
42
+ combustion (1.3.1)
43
43
  activesupport (>= 3.0.0)
44
44
  railties (>= 3.0.0)
45
45
  thor (>= 0.14.6)
46
- concurrent-ruby (1.0.5)
47
- crass (1.0.3)
48
- database_cleaner (1.6.2)
49
- diff-lcs (1.3)
50
- docile (1.3.0)
51
- erubi (1.7.1)
52
- i18n (0.9.5)
46
+ concurrent-ruby (1.1.7)
47
+ crass (1.0.6)
48
+ database_cleaner (1.8.5)
49
+ diff-lcs (1.4.4)
50
+ docile (1.3.4)
51
+ erubi (1.10.0)
52
+ i18n (1.8.5)
53
53
  concurrent-ruby (~> 1.0)
54
- jaro_winkler (1.5.4)
55
- json (2.3.1)
56
- loofah (2.2.2)
54
+ loofah (2.8.0)
57
55
  crass (~> 1.0.2)
58
56
  nokogiri (>= 1.5.9)
59
- method_source (0.9.0)
57
+ method_source (1.0.0)
60
58
  mini_portile2 (2.4.0)
61
- minitest (5.11.3)
62
- nokogiri (1.10.7)
59
+ minitest (5.14.2)
60
+ nokogiri (1.10.10)
63
61
  mini_portile2 (~> 2.4.0)
64
- parallel (1.19.1)
65
- parser (2.7.0.2)
66
- ast (~> 2.4.0)
67
- pg (1.2.2)
68
- pry (0.11.3)
69
- coderay (~> 1.1.0)
70
- method_source (~> 0.9.0)
71
- rack (2.0.4)
72
- rack-test (1.0.0)
62
+ parallel (1.20.1)
63
+ parser (3.0.0.0)
64
+ ast (~> 2.4.1)
65
+ pg (1.2.3)
66
+ pry (0.13.1)
67
+ coderay (~> 1.1)
68
+ method_source (~> 1.0)
69
+ rack (2.2.3)
70
+ rack-test (1.1.0)
73
71
  rack (>= 1.0, < 3)
74
72
  rails-dom-testing (2.0.3)
75
73
  activesupport (>= 4.2.0)
76
74
  nokogiri (>= 1.6)
77
- rails-html-sanitizer (1.0.4)
78
- loofah (~> 2.2, >= 2.2.2)
79
- railties (5.1.5)
80
- actionpack (= 5.1.5)
81
- activesupport (= 5.1.5)
75
+ rails-html-sanitizer (1.3.0)
76
+ loofah (~> 2.3)
77
+ railties (5.1.7)
78
+ actionpack (= 5.1.7)
79
+ activesupport (= 5.1.7)
82
80
  method_source
83
81
  rake (>= 0.8.7)
84
82
  thor (>= 0.18.1, < 2.0)
85
83
  rainbow (3.0.0)
86
- rake (12.3.3)
87
- rspec-core (3.7.1)
88
- rspec-support (~> 3.7.0)
89
- rspec-expectations (3.7.0)
84
+ rake (13.0.3)
85
+ regexp_parser (2.0.3)
86
+ rexml (3.2.4)
87
+ rspec-core (3.10.1)
88
+ rspec-support (~> 3.10.0)
89
+ rspec-expectations (3.10.1)
90
90
  diff-lcs (>= 1.2.0, < 2.0)
91
- rspec-support (~> 3.7.0)
92
- rspec-mocks (3.7.0)
91
+ rspec-support (~> 3.10.0)
92
+ rspec-mocks (3.10.1)
93
93
  diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.7.0)
95
- rspec-rails (3.7.2)
96
- actionpack (>= 3.0)
97
- activesupport (>= 3.0)
98
- railties (>= 3.0)
99
- rspec-core (~> 3.7.0)
100
- rspec-expectations (~> 3.7.0)
101
- rspec-mocks (~> 3.7.0)
102
- rspec-support (~> 3.7.0)
103
- rspec-support (3.7.1)
104
- rubocop (0.79.0)
105
- jaro_winkler (~> 1.5.1)
94
+ rspec-support (~> 3.10.0)
95
+ rspec-rails (4.0.2)
96
+ actionpack (>= 4.2)
97
+ activesupport (>= 4.2)
98
+ railties (>= 4.2)
99
+ rspec-core (~> 3.10)
100
+ rspec-expectations (~> 3.10)
101
+ rspec-mocks (~> 3.10)
102
+ rspec-support (~> 3.10)
103
+ rspec-support (3.10.1)
104
+ rubocop (1.7.0)
106
105
  parallel (~> 1.10)
107
- parser (>= 2.7.0.1)
106
+ parser (>= 2.7.1.5)
108
107
  rainbow (>= 2.2.2, < 4.0)
108
+ regexp_parser (>= 1.8, < 3.0)
109
+ rexml
110
+ rubocop-ast (>= 1.2.0, < 2.0)
109
111
  ruby-progressbar (~> 1.7)
110
- unicode-display_width (>= 1.4.0, < 1.7)
111
- rubocop-rspec (1.37.1)
112
- rubocop (>= 0.68.1)
113
- ruby-progressbar (1.10.1)
114
- simplecov (0.16.1)
112
+ unicode-display_width (>= 1.4.0, < 2.0)
113
+ rubocop-ast (1.3.0)
114
+ parser (>= 2.7.1.5)
115
+ rubocop-rspec (2.1.0)
116
+ rubocop (~> 1.0)
117
+ rubocop-ast (>= 1.1.0)
118
+ ruby-progressbar (1.11.0)
119
+ simplecov (0.20.0)
115
120
  docile (~> 1.1)
116
- json (>= 1.8, < 3)
117
- simplecov-html (~> 0.10.0)
118
- simplecov-html (0.10.2)
119
- thor (0.20.0)
121
+ simplecov-html (~> 0.11)
122
+ simplecov_json_formatter (~> 0.1)
123
+ simplecov-html (0.12.3)
124
+ simplecov_json_formatter (0.1.2)
125
+ thor (1.0.1)
120
126
  thread_safe (0.3.6)
121
- tzinfo (1.2.8)
127
+ tzinfo (1.2.9)
122
128
  thread_safe (~> 0.1)
123
- unicode-display_width (1.6.1)
129
+ unicode-display_width (1.7.0)
124
130
 
125
131
  PLATFORMS
126
- ruby
132
+ x86_64-darwin-20
133
+ x86_64-linux
127
134
 
128
135
  DEPENDENCIES
129
- activerecord (= 5.1.5)
136
+ activerecord (~> 5.1, < 5.2)
130
137
  appraisal
131
- bundler (~> 2.1)
138
+ bundler (~> 2)
132
139
  combustion (~> 1.1)
133
140
  database_cleaner (~> 1.6)
134
141
  parentry!
135
142
  pg (~> 1.2)
136
- pry (~> 0.10)
137
- rake (~> 12.3)
138
- rspec-rails (~> 3.7)
139
- rubocop-rspec (~> 1.37)
140
- simplecov (~> 0.16)
143
+ pry (~> 0.13)
144
+ rake (~> 13)
145
+ rspec-rails (~> 4.0)
146
+ rubocop-rspec (~> 2.1)
147
+ simplecov (~> 0.20)
141
148
 
142
149
  BUNDLED WITH
143
- 2.1.4
150
+ 2.2.32
@@ -3,6 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "5.2.0"
6
+ gem "activerecord", "~> 5.2", "< 6"
7
7
 
8
8
  gemspec path: "../"
@@ -1,143 +1,150 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- parentry (1.3.0)
5
- activerecord (>= 5.1, < 6.2)
4
+ parentry (1.5.0)
5
+ activerecord (>= 5.1, < 7.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (5.2.0)
11
- actionview (= 5.2.0)
12
- activesupport (= 5.2.0)
13
- rack (~> 2.0)
10
+ actionpack (5.2.4.4)
11
+ actionview (= 5.2.4.4)
12
+ activesupport (= 5.2.4.4)
13
+ rack (~> 2.0, >= 2.0.8)
14
14
  rack-test (>= 0.6.3)
15
15
  rails-dom-testing (~> 2.0)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- actionview (5.2.0)
18
- activesupport (= 5.2.0)
17
+ actionview (5.2.4.4)
18
+ activesupport (= 5.2.4.4)
19
19
  builder (~> 3.1)
20
20
  erubi (~> 1.4)
21
21
  rails-dom-testing (~> 2.0)
22
22
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
- activemodel (5.2.0)
24
- activesupport (= 5.2.0)
25
- activerecord (5.2.0)
26
- activemodel (= 5.2.0)
27
- activesupport (= 5.2.0)
23
+ activemodel (5.2.4.4)
24
+ activesupport (= 5.2.4.4)
25
+ activerecord (5.2.4.4)
26
+ activemodel (= 5.2.4.4)
27
+ activesupport (= 5.2.4.4)
28
28
  arel (>= 9.0)
29
- activesupport (5.2.0)
29
+ activesupport (5.2.4.4)
30
30
  concurrent-ruby (~> 1.0, >= 1.0.2)
31
31
  i18n (>= 0.7, < 2)
32
32
  minitest (~> 5.1)
33
33
  tzinfo (~> 1.1)
34
- appraisal (2.2.0)
34
+ appraisal (2.3.0)
35
35
  bundler
36
36
  rake
37
37
  thor (>= 0.14.0)
38
38
  arel (9.0.0)
39
- ast (2.4.0)
40
- builder (3.2.3)
41
- coderay (1.1.2)
42
- combustion (1.1.1)
39
+ ast (2.4.1)
40
+ builder (3.2.4)
41
+ coderay (1.1.3)
42
+ combustion (1.3.1)
43
43
  activesupport (>= 3.0.0)
44
44
  railties (>= 3.0.0)
45
45
  thor (>= 0.14.6)
46
- concurrent-ruby (1.0.5)
47
- crass (1.0.4)
48
- database_cleaner (1.6.2)
49
- diff-lcs (1.3)
50
- docile (1.3.0)
51
- erubi (1.7.1)
52
- i18n (1.0.0)
46
+ concurrent-ruby (1.1.7)
47
+ crass (1.0.6)
48
+ database_cleaner (1.8.5)
49
+ diff-lcs (1.4.4)
50
+ docile (1.3.4)
51
+ erubi (1.10.0)
52
+ i18n (1.8.5)
53
53
  concurrent-ruby (~> 1.0)
54
- jaro_winkler (1.5.4)
55
- json (2.3.1)
56
- loofah (2.2.2)
54
+ loofah (2.8.0)
57
55
  crass (~> 1.0.2)
58
56
  nokogiri (>= 1.5.9)
59
- method_source (0.9.0)
57
+ method_source (1.0.0)
60
58
  mini_portile2 (2.4.0)
61
- minitest (5.11.3)
62
- nokogiri (1.10.7)
59
+ minitest (5.14.2)
60
+ nokogiri (1.10.10)
63
61
  mini_portile2 (~> 2.4.0)
64
- parallel (1.19.1)
65
- parser (2.7.0.2)
66
- ast (~> 2.4.0)
67
- pg (1.2.2)
68
- pry (0.11.3)
69
- coderay (~> 1.1.0)
70
- method_source (~> 0.9.0)
71
- rack (2.0.4)
72
- rack-test (1.0.0)
62
+ parallel (1.20.1)
63
+ parser (3.0.0.0)
64
+ ast (~> 2.4.1)
65
+ pg (1.2.3)
66
+ pry (0.13.1)
67
+ coderay (~> 1.1)
68
+ method_source (~> 1.0)
69
+ rack (2.2.3)
70
+ rack-test (1.1.0)
73
71
  rack (>= 1.0, < 3)
74
72
  rails-dom-testing (2.0.3)
75
73
  activesupport (>= 4.2.0)
76
74
  nokogiri (>= 1.6)
77
- rails-html-sanitizer (1.0.4)
78
- loofah (~> 2.2, >= 2.2.2)
79
- railties (5.2.0)
80
- actionpack (= 5.2.0)
81
- activesupport (= 5.2.0)
75
+ rails-html-sanitizer (1.3.0)
76
+ loofah (~> 2.3)
77
+ railties (5.2.4.4)
78
+ actionpack (= 5.2.4.4)
79
+ activesupport (= 5.2.4.4)
82
80
  method_source
83
81
  rake (>= 0.8.7)
84
- thor (>= 0.18.1, < 2.0)
82
+ thor (>= 0.19.0, < 2.0)
85
83
  rainbow (3.0.0)
86
- rake (12.3.3)
87
- rspec-core (3.7.1)
88
- rspec-support (~> 3.7.0)
89
- rspec-expectations (3.7.0)
84
+ rake (13.0.3)
85
+ regexp_parser (2.0.3)
86
+ rexml (3.2.4)
87
+ rspec-core (3.10.1)
88
+ rspec-support (~> 3.10.0)
89
+ rspec-expectations (3.10.1)
90
90
  diff-lcs (>= 1.2.0, < 2.0)
91
- rspec-support (~> 3.7.0)
92
- rspec-mocks (3.7.0)
91
+ rspec-support (~> 3.10.0)
92
+ rspec-mocks (3.10.1)
93
93
  diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.7.0)
95
- rspec-rails (3.7.2)
96
- actionpack (>= 3.0)
97
- activesupport (>= 3.0)
98
- railties (>= 3.0)
99
- rspec-core (~> 3.7.0)
100
- rspec-expectations (~> 3.7.0)
101
- rspec-mocks (~> 3.7.0)
102
- rspec-support (~> 3.7.0)
103
- rspec-support (3.7.1)
104
- rubocop (0.79.0)
105
- jaro_winkler (~> 1.5.1)
94
+ rspec-support (~> 3.10.0)
95
+ rspec-rails (4.0.2)
96
+ actionpack (>= 4.2)
97
+ activesupport (>= 4.2)
98
+ railties (>= 4.2)
99
+ rspec-core (~> 3.10)
100
+ rspec-expectations (~> 3.10)
101
+ rspec-mocks (~> 3.10)
102
+ rspec-support (~> 3.10)
103
+ rspec-support (3.10.1)
104
+ rubocop (1.7.0)
106
105
  parallel (~> 1.10)
107
- parser (>= 2.7.0.1)
106
+ parser (>= 2.7.1.5)
108
107
  rainbow (>= 2.2.2, < 4.0)
108
+ regexp_parser (>= 1.8, < 3.0)
109
+ rexml
110
+ rubocop-ast (>= 1.2.0, < 2.0)
109
111
  ruby-progressbar (~> 1.7)
110
- unicode-display_width (>= 1.4.0, < 1.7)
111
- rubocop-rspec (1.37.1)
112
- rubocop (>= 0.68.1)
113
- ruby-progressbar (1.10.1)
114
- simplecov (0.16.1)
112
+ unicode-display_width (>= 1.4.0, < 2.0)
113
+ rubocop-ast (1.3.0)
114
+ parser (>= 2.7.1.5)
115
+ rubocop-rspec (2.1.0)
116
+ rubocop (~> 1.0)
117
+ rubocop-ast (>= 1.1.0)
118
+ ruby-progressbar (1.11.0)
119
+ simplecov (0.20.0)
115
120
  docile (~> 1.1)
116
- json (>= 1.8, < 3)
117
- simplecov-html (~> 0.10.0)
118
- simplecov-html (0.10.2)
119
- thor (0.20.0)
121
+ simplecov-html (~> 0.11)
122
+ simplecov_json_formatter (~> 0.1)
123
+ simplecov-html (0.12.3)
124
+ simplecov_json_formatter (0.1.2)
125
+ thor (1.0.1)
120
126
  thread_safe (0.3.6)
121
- tzinfo (1.2.8)
127
+ tzinfo (1.2.9)
122
128
  thread_safe (~> 0.1)
123
- unicode-display_width (1.6.1)
129
+ unicode-display_width (1.7.0)
124
130
 
125
131
  PLATFORMS
126
- ruby
132
+ x86_64-darwin-20
133
+ x86_64-linux
127
134
 
128
135
  DEPENDENCIES
129
- activerecord (= 5.2.0)
136
+ activerecord (~> 5.2, < 6)
130
137
  appraisal
131
- bundler (~> 2.1)
138
+ bundler (~> 2)
132
139
  combustion (~> 1.1)
133
140
  database_cleaner (~> 1.6)
134
141
  parentry!
135
142
  pg (~> 1.2)
136
- pry (~> 0.10)
137
- rake (~> 12.3)
138
- rspec-rails (~> 3.7)
139
- rubocop-rspec (~> 1.37)
140
- simplecov (~> 0.16)
143
+ pry (~> 0.13)
144
+ rake (~> 13)
145
+ rspec-rails (~> 4.0)
146
+ rubocop-rspec (~> 2.1)
147
+ simplecov (~> 0.20)
141
148
 
142
149
  BUNDLED WITH
143
- 2.1.4
150
+ 2.2.32
@@ -3,6 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "6.0.0"
6
+ gem "activerecord", "~> 6.0", "< 6.1"
7
7
 
8
8
  gemspec path: "../"