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 +4 -4
- data/.github/workflows/ruby.yml +6 -20
- data/.rubocop.yml +2 -1
- data/.tool-versions +1 -1
- data/Appraisals +8 -4
- data/gemfiles/activerecord_5.1.5.gemfile +1 -1
- data/gemfiles/activerecord_5.1.5.gemfile.lock +92 -85
- data/gemfiles/activerecord_5.2.0.gemfile +1 -1
- data/gemfiles/activerecord_5.2.0.gemfile.lock +93 -86
- data/gemfiles/activerecord_6.0.0.gemfile +1 -1
- data/gemfiles/activerecord_6.0.0.gemfile.lock +93 -86
- data/gemfiles/activerecord_6.1.0.gemfile +1 -1
- data/gemfiles/activerecord_6.1.0.gemfile.lock +66 -64
- data/gemfiles/activerecord_7.0.0.gemfile +8 -0
- data/gemfiles/activerecord_7.0.0.gemfile.lock +150 -0
- data/lib/parentry/strategy/array/instance_methods.rb +1 -1
- data/lib/parentry/strategy/ltree/instance_methods.rb +2 -2
- data/lib/parentry/version.rb +1 -1
- data/lib/parentry.rb +2 -0
- data/parentry.gemspec +9 -7
- metadata +20 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3feb70016cb4448fb7a633c183e4c28451779e80f4b17d9f41c9b56e8e4e560
|
4
|
+
data.tar.gz: 54c9e48f984205d2ba80c5bd53d745c19c89bd95529c63b7e2f4f2335ce3b89a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad121d565f69446d95ef7db926461dd0c51c28ef981c95b0b02ed8debb6b27f40f7576773f76e31e35336704d9bb3fa5705461e9ef2bc5e02a66e4f542e8a534
|
7
|
+
data.tar.gz: 34ed4870c5f7fed79a0558df2e4db01f932690f8e07b935f56c4dfce6343529b6ba2bf69d97a00c039cadc820cd40ae708494bbdf9f8ed6be10c479958852f59
|
data/.github/workflows/ruby.yml
CHANGED
@@ -10,14 +10,12 @@ jobs:
|
|
10
10
|
strategy:
|
11
11
|
matrix:
|
12
12
|
ruby:
|
13
|
-
- 2.
|
14
|
-
-
|
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:
|
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
|
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
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby
|
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.
|
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
|
6
|
+
gem 'activerecord', '~> 5.2', '< 6'
|
7
7
|
end
|
8
8
|
|
9
9
|
appraise 'activerecord-6.0.0' do
|
10
|
-
gem 'activerecord', '6.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.
|
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
|
@@ -1,143 +1,150 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
parentry (1.
|
5
|
-
activerecord (>= 5.1, <
|
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.
|
11
|
-
actionview (= 5.1.
|
12
|
-
activesupport (= 5.1.
|
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.
|
18
|
-
activesupport (= 5.1.
|
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.
|
24
|
-
activesupport (= 5.1.
|
25
|
-
activerecord (5.1.
|
26
|
-
activemodel (= 5.1.
|
27
|
-
activesupport (= 5.1.
|
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.
|
29
|
+
activesupport (5.1.7)
|
30
30
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
31
|
-
i18n (
|
31
|
+
i18n (>= 0.7, < 2)
|
32
32
|
minitest (~> 5.1)
|
33
33
|
tzinfo (~> 1.1)
|
34
|
-
appraisal (2.
|
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.
|
40
|
-
builder (3.2.
|
41
|
-
coderay (1.1.
|
42
|
-
combustion (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.
|
47
|
-
crass (1.0.
|
48
|
-
database_cleaner (1.
|
49
|
-
diff-lcs (1.
|
50
|
-
docile (1.3.
|
51
|
-
erubi (1.
|
52
|
-
i18n (
|
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
|
-
|
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.
|
57
|
+
method_source (1.0.0)
|
60
58
|
mini_portile2 (2.4.0)
|
61
|
-
minitest (5.
|
62
|
-
nokogiri (1.10.
|
59
|
+
minitest (5.14.2)
|
60
|
+
nokogiri (1.10.10)
|
63
61
|
mini_portile2 (~> 2.4.0)
|
64
|
-
parallel (1.
|
65
|
-
parser (
|
66
|
-
ast (~> 2.4.
|
67
|
-
pg (1.2.
|
68
|
-
pry (0.
|
69
|
-
coderay (~> 1.1
|
70
|
-
method_source (~>
|
71
|
-
rack (2.
|
72
|
-
rack-test (1.
|
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
|
78
|
-
loofah (~> 2.
|
79
|
-
railties (5.1.
|
80
|
-
actionpack (= 5.1.
|
81
|
-
activesupport (= 5.1.
|
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 (
|
87
|
-
|
88
|
-
|
89
|
-
rspec-
|
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.
|
92
|
-
rspec-mocks (3.
|
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.
|
95
|
-
rspec-rails (
|
96
|
-
actionpack (>=
|
97
|
-
activesupport (>=
|
98
|
-
railties (>=
|
99
|
-
rspec-core (~> 3.
|
100
|
-
rspec-expectations (~> 3.
|
101
|
-
rspec-mocks (~> 3.
|
102
|
-
rspec-support (~> 3.
|
103
|
-
rspec-support (3.
|
104
|
-
rubocop (
|
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.
|
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, <
|
111
|
-
rubocop-
|
112
|
-
|
113
|
-
|
114
|
-
|
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
|
-
|
117
|
-
|
118
|
-
simplecov-html (0.
|
119
|
-
|
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.
|
127
|
+
tzinfo (1.2.9)
|
122
128
|
thread_safe (~> 0.1)
|
123
|
-
unicode-display_width (1.
|
129
|
+
unicode-display_width (1.7.0)
|
124
130
|
|
125
131
|
PLATFORMS
|
126
|
-
|
132
|
+
x86_64-darwin-20
|
133
|
+
x86_64-linux
|
127
134
|
|
128
135
|
DEPENDENCIES
|
129
|
-
activerecord (
|
136
|
+
activerecord (~> 5.1, < 5.2)
|
130
137
|
appraisal
|
131
|
-
bundler (~> 2
|
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.
|
137
|
-
rake (~>
|
138
|
-
rspec-rails (~>
|
139
|
-
rubocop-rspec (~> 1
|
140
|
-
simplecov (~> 0.
|
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.
|
150
|
+
2.2.32
|
@@ -1,143 +1,150 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
parentry (1.
|
5
|
-
activerecord (>= 5.1, <
|
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.
|
11
|
-
actionview (= 5.2.
|
12
|
-
activesupport (= 5.2.
|
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.
|
18
|
-
activesupport (= 5.2.
|
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.
|
24
|
-
activesupport (= 5.2.
|
25
|
-
activerecord (5.2.
|
26
|
-
activemodel (= 5.2.
|
27
|
-
activesupport (= 5.2.
|
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.
|
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.
|
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.
|
40
|
-
builder (3.2.
|
41
|
-
coderay (1.1.
|
42
|
-
combustion (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.
|
47
|
-
crass (1.0.
|
48
|
-
database_cleaner (1.
|
49
|
-
diff-lcs (1.
|
50
|
-
docile (1.3.
|
51
|
-
erubi (1.
|
52
|
-
i18n (1.
|
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
|
-
|
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.
|
57
|
+
method_source (1.0.0)
|
60
58
|
mini_portile2 (2.4.0)
|
61
|
-
minitest (5.
|
62
|
-
nokogiri (1.10.
|
59
|
+
minitest (5.14.2)
|
60
|
+
nokogiri (1.10.10)
|
63
61
|
mini_portile2 (~> 2.4.0)
|
64
|
-
parallel (1.
|
65
|
-
parser (
|
66
|
-
ast (~> 2.4.
|
67
|
-
pg (1.2.
|
68
|
-
pry (0.
|
69
|
-
coderay (~> 1.1
|
70
|
-
method_source (~>
|
71
|
-
rack (2.
|
72
|
-
rack-test (1.
|
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
|
78
|
-
loofah (~> 2.
|
79
|
-
railties (5.2.
|
80
|
-
actionpack (= 5.2.
|
81
|
-
activesupport (= 5.2.
|
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.
|
82
|
+
thor (>= 0.19.0, < 2.0)
|
85
83
|
rainbow (3.0.0)
|
86
|
-
rake (
|
87
|
-
|
88
|
-
|
89
|
-
rspec-
|
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.
|
92
|
-
rspec-mocks (3.
|
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.
|
95
|
-
rspec-rails (
|
96
|
-
actionpack (>=
|
97
|
-
activesupport (>=
|
98
|
-
railties (>=
|
99
|
-
rspec-core (~> 3.
|
100
|
-
rspec-expectations (~> 3.
|
101
|
-
rspec-mocks (~> 3.
|
102
|
-
rspec-support (~> 3.
|
103
|
-
rspec-support (3.
|
104
|
-
rubocop (
|
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.
|
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, <
|
111
|
-
rubocop-
|
112
|
-
|
113
|
-
|
114
|
-
|
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
|
-
|
117
|
-
|
118
|
-
simplecov-html (0.
|
119
|
-
|
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.
|
127
|
+
tzinfo (1.2.9)
|
122
128
|
thread_safe (~> 0.1)
|
123
|
-
unicode-display_width (1.
|
129
|
+
unicode-display_width (1.7.0)
|
124
130
|
|
125
131
|
PLATFORMS
|
126
|
-
|
132
|
+
x86_64-darwin-20
|
133
|
+
x86_64-linux
|
127
134
|
|
128
135
|
DEPENDENCIES
|
129
|
-
activerecord (
|
136
|
+
activerecord (~> 5.2, < 6)
|
130
137
|
appraisal
|
131
|
-
bundler (~> 2
|
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.
|
137
|
-
rake (~>
|
138
|
-
rspec-rails (~>
|
139
|
-
rubocop-rspec (~> 1
|
140
|
-
simplecov (~> 0.
|
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.
|
150
|
+
2.2.32
|