lol_dba 2.1.9 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +0 -3
- data/.travis.yml +2 -1
- data/Appraisals +17 -0
- data/Gemfile.lock +41 -45
- data/README.md +1 -1
- data/Rakefile +1 -3
- data/gemfiles/rails_3_2.gemfile +1 -0
- data/gemfiles/rails_3_2.gemfile.lock +16 -16
- data/gemfiles/rails_4_0.gemfile +1 -0
- data/gemfiles/rails_4_0.gemfile.lock +13 -15
- data/gemfiles/rails_4_1.gemfile +1 -0
- data/gemfiles/rails_4_1.gemfile.lock +13 -14
- data/gemfiles/rails_4_2.gemfile +1 -0
- data/gemfiles/rails_4_2.gemfile.lock +22 -24
- data/gemfiles/rails_5_0.gemfile +1 -0
- data/gemfiles/rails_5_0.gemfile.lock +23 -25
- data/gemfiles/rails_5_1.gemfile +1 -0
- data/gemfiles/rails_5_1.gemfile.lock +23 -25
- data/gemfiles/rails_5_2.gemfile +1 -0
- data/gemfiles/rails_5_2.gemfile.lock +37 -39
- data/gemfiles/rails_6.gemfile +10 -0
- data/gemfiles/rails_6.gemfile.lock +113 -0
- data/lib/lol_dba/cli.rb +4 -1
- data/lib/lol_dba/index_finding/index_finder.rb +4 -2
- data/lib/lol_dba/rails_compatibility.rb +25 -16
- data/lib/lol_dba/version.rb +1 -1
- data/lib/tasks/lol_dba.rake +2 -1
- data/lol_dba.gemspec +7 -6
- data/spec/associations_index_spec.rb +9 -0
- data/spec/cli_spec.rb +31 -0
- data/spec/fixtures/config/environment.rb +0 -0
- data/spec/fixtures/schema.rb +4 -0
- data/spec/index_finder_spec.rb +24 -0
- data/spec/spec_helper.rb +1 -1
- data/spec/tasks_spec.rb +34 -0
- metadata +29 -33
data/gemfiles/rails_4_1.gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
lol_dba (2.
|
5
|
-
actionpack (>= 3.0, <
|
6
|
-
activerecord (>= 3.0, <
|
7
|
-
railties (>= 3.0, <
|
4
|
+
lol_dba (2.2.0)
|
5
|
+
actionpack (>= 3.0, < 7.0)
|
6
|
+
activerecord (>= 3.0, < 7.0)
|
7
|
+
railties (>= 3.0, < 7.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -37,7 +37,7 @@ GEM
|
|
37
37
|
thor (>= 0.14.0)
|
38
38
|
arel (5.0.1.20140414130214)
|
39
39
|
builder (3.2.4)
|
40
|
-
concurrent-ruby (1.1.
|
40
|
+
concurrent-ruby (1.1.6)
|
41
41
|
diff-lcs (1.3)
|
42
42
|
docile (1.3.2)
|
43
43
|
erubis (2.7.0)
|
@@ -56,13 +56,13 @@ GEM
|
|
56
56
|
rake (13.0.1)
|
57
57
|
rspec-core (3.9.1)
|
58
58
|
rspec-support (~> 3.9.1)
|
59
|
-
rspec-expectations (3.9.
|
59
|
+
rspec-expectations (3.9.1)
|
60
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
61
61
|
rspec-support (~> 3.9.0)
|
62
62
|
rspec-mocks (3.9.1)
|
63
63
|
diff-lcs (>= 1.2.0, < 2.0)
|
64
64
|
rspec-support (~> 3.9.0)
|
65
|
-
rspec-rails (3.9.
|
65
|
+
rspec-rails (3.9.1)
|
66
66
|
actionpack (>= 3.0)
|
67
67
|
activesupport (>= 3.0)
|
68
68
|
railties (>= 3.0)
|
@@ -71,11 +71,10 @@ GEM
|
|
71
71
|
rspec-mocks (~> 3.9.0)
|
72
72
|
rspec-support (~> 3.9.0)
|
73
73
|
rspec-support (3.9.2)
|
74
|
-
simplecov (0.
|
74
|
+
simplecov (0.18.5)
|
75
75
|
docile (~> 1.1)
|
76
|
-
|
77
|
-
|
78
|
-
simplecov-html (0.10.2)
|
76
|
+
simplecov-html (~> 0.11)
|
77
|
+
simplecov-html (0.12.2)
|
79
78
|
sqlite3 (1.3.13)
|
80
79
|
thor (1.0.1)
|
81
80
|
thread_safe (0.3.6)
|
@@ -88,12 +87,12 @@ PLATFORMS
|
|
88
87
|
DEPENDENCIES
|
89
88
|
actionpack (~> 4.1.9)
|
90
89
|
activerecord (~> 4.1.9)
|
91
|
-
appraisal
|
90
|
+
appraisal
|
92
91
|
lol_dba!
|
93
92
|
railties (~> 4.1.9)
|
94
93
|
rspec-rails
|
95
|
-
simplecov
|
96
|
-
sqlite3 (
|
94
|
+
simplecov
|
95
|
+
sqlite3 (< 1.4)
|
97
96
|
|
98
97
|
BUNDLED WITH
|
99
98
|
2.1.4
|
data/gemfiles/rails_4_2.gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
lol_dba (2.
|
5
|
-
actionpack (>= 3.0, <
|
6
|
-
activerecord (>= 3.0, <
|
7
|
-
railties (>= 3.0, <
|
4
|
+
lol_dba (2.2.0)
|
5
|
+
actionpack (>= 3.0, < 7.0)
|
6
|
+
activerecord (>= 3.0, < 7.0)
|
7
|
+
railties (>= 3.0, < 7.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -40,22 +40,21 @@ GEM
|
|
40
40
|
thor (>= 0.14.0)
|
41
41
|
arel (6.0.4)
|
42
42
|
builder (3.2.4)
|
43
|
-
concurrent-ruby (1.1.
|
43
|
+
concurrent-ruby (1.1.6)
|
44
44
|
crass (1.0.6)
|
45
45
|
diff-lcs (1.3)
|
46
46
|
docile (1.3.2)
|
47
47
|
erubis (2.7.0)
|
48
48
|
i18n (0.9.5)
|
49
49
|
concurrent-ruby (~> 1.0)
|
50
|
-
json (2.3.0)
|
51
50
|
loofah (2.4.0)
|
52
51
|
crass (~> 1.0.2)
|
53
52
|
nokogiri (>= 1.5.9)
|
54
53
|
mini_portile2 (2.4.0)
|
55
54
|
minitest (5.14.0)
|
56
|
-
nokogiri (1.10.
|
55
|
+
nokogiri (1.10.9)
|
57
56
|
mini_portile2 (~> 2.4.0)
|
58
|
-
rack (1.6.
|
57
|
+
rack (1.6.13)
|
59
58
|
rack-test (0.6.3)
|
60
59
|
rack (>= 1.0)
|
61
60
|
rails-deprecated_sanitizer (1.0.3)
|
@@ -74,26 +73,25 @@ GEM
|
|
74
73
|
rake (13.0.1)
|
75
74
|
rspec-core (3.9.1)
|
76
75
|
rspec-support (~> 3.9.1)
|
77
|
-
rspec-expectations (3.9.
|
76
|
+
rspec-expectations (3.9.1)
|
78
77
|
diff-lcs (>= 1.2.0, < 2.0)
|
79
78
|
rspec-support (~> 3.9.0)
|
80
79
|
rspec-mocks (3.9.1)
|
81
80
|
diff-lcs (>= 1.2.0, < 2.0)
|
82
81
|
rspec-support (~> 3.9.0)
|
83
|
-
rspec-rails (
|
84
|
-
actionpack (>=
|
85
|
-
activesupport (>=
|
86
|
-
railties (>=
|
87
|
-
rspec-core (~> 3.9
|
88
|
-
rspec-expectations (~> 3.9
|
89
|
-
rspec-mocks (~> 3.9
|
90
|
-
rspec-support (~> 3.9
|
82
|
+
rspec-rails (4.0.0)
|
83
|
+
actionpack (>= 4.2)
|
84
|
+
activesupport (>= 4.2)
|
85
|
+
railties (>= 4.2)
|
86
|
+
rspec-core (~> 3.9)
|
87
|
+
rspec-expectations (~> 3.9)
|
88
|
+
rspec-mocks (~> 3.9)
|
89
|
+
rspec-support (~> 3.9)
|
91
90
|
rspec-support (3.9.2)
|
92
|
-
simplecov (0.
|
91
|
+
simplecov (0.18.5)
|
93
92
|
docile (~> 1.1)
|
94
|
-
|
95
|
-
|
96
|
-
simplecov-html (0.10.2)
|
93
|
+
simplecov-html (~> 0.11)
|
94
|
+
simplecov-html (0.12.2)
|
97
95
|
sqlite3 (1.3.13)
|
98
96
|
thor (1.0.1)
|
99
97
|
thread_safe (0.3.6)
|
@@ -106,12 +104,12 @@ PLATFORMS
|
|
106
104
|
DEPENDENCIES
|
107
105
|
actionpack (~> 4.2.0)
|
108
106
|
activerecord (~> 4.2.0)
|
109
|
-
appraisal
|
107
|
+
appraisal
|
110
108
|
lol_dba!
|
111
109
|
railties (~> 4.2.0)
|
112
110
|
rspec-rails
|
113
|
-
simplecov
|
114
|
-
sqlite3 (
|
111
|
+
simplecov
|
112
|
+
sqlite3 (< 1.4)
|
115
113
|
|
116
114
|
BUNDLED WITH
|
117
115
|
2.1.4
|
data/gemfiles/rails_5_0.gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
lol_dba (2.
|
5
|
-
actionpack (>= 3.0, <
|
6
|
-
activerecord (>= 3.0, <
|
7
|
-
railties (>= 3.0, <
|
4
|
+
lol_dba (2.2.0)
|
5
|
+
actionpack (>= 3.0, < 7.0)
|
6
|
+
activerecord (>= 3.0, < 7.0)
|
7
|
+
railties (>= 3.0, < 7.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -39,23 +39,22 @@ GEM
|
|
39
39
|
thor (>= 0.14.0)
|
40
40
|
arel (7.1.4)
|
41
41
|
builder (3.2.4)
|
42
|
-
concurrent-ruby (1.1.
|
42
|
+
concurrent-ruby (1.1.6)
|
43
43
|
crass (1.0.6)
|
44
44
|
diff-lcs (1.3)
|
45
45
|
docile (1.3.2)
|
46
46
|
erubis (2.7.0)
|
47
47
|
i18n (1.8.2)
|
48
48
|
concurrent-ruby (~> 1.0)
|
49
|
-
json (2.3.0)
|
50
49
|
loofah (2.4.0)
|
51
50
|
crass (~> 1.0.2)
|
52
51
|
nokogiri (>= 1.5.9)
|
53
|
-
method_source (0.
|
52
|
+
method_source (1.0.0)
|
54
53
|
mini_portile2 (2.4.0)
|
55
54
|
minitest (5.14.0)
|
56
|
-
nokogiri (1.10.
|
55
|
+
nokogiri (1.10.9)
|
57
56
|
mini_portile2 (~> 2.4.0)
|
58
|
-
rack (2.
|
57
|
+
rack (2.2.2)
|
59
58
|
rack-test (0.6.3)
|
60
59
|
rack (>= 1.0)
|
61
60
|
rails-dom-testing (2.0.3)
|
@@ -72,26 +71,25 @@ GEM
|
|
72
71
|
rake (13.0.1)
|
73
72
|
rspec-core (3.9.1)
|
74
73
|
rspec-support (~> 3.9.1)
|
75
|
-
rspec-expectations (3.9.
|
74
|
+
rspec-expectations (3.9.1)
|
76
75
|
diff-lcs (>= 1.2.0, < 2.0)
|
77
76
|
rspec-support (~> 3.9.0)
|
78
77
|
rspec-mocks (3.9.1)
|
79
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
79
|
rspec-support (~> 3.9.0)
|
81
|
-
rspec-rails (
|
82
|
-
actionpack (>=
|
83
|
-
activesupport (>=
|
84
|
-
railties (>=
|
85
|
-
rspec-core (~> 3.9
|
86
|
-
rspec-expectations (~> 3.9
|
87
|
-
rspec-mocks (~> 3.9
|
88
|
-
rspec-support (~> 3.9
|
80
|
+
rspec-rails (4.0.0)
|
81
|
+
actionpack (>= 4.2)
|
82
|
+
activesupport (>= 4.2)
|
83
|
+
railties (>= 4.2)
|
84
|
+
rspec-core (~> 3.9)
|
85
|
+
rspec-expectations (~> 3.9)
|
86
|
+
rspec-mocks (~> 3.9)
|
87
|
+
rspec-support (~> 3.9)
|
89
88
|
rspec-support (3.9.2)
|
90
|
-
simplecov (0.
|
89
|
+
simplecov (0.18.5)
|
91
90
|
docile (~> 1.1)
|
92
|
-
|
93
|
-
|
94
|
-
simplecov-html (0.10.2)
|
91
|
+
simplecov-html (~> 0.11)
|
92
|
+
simplecov-html (0.12.2)
|
95
93
|
sqlite3 (1.3.13)
|
96
94
|
thor (1.0.1)
|
97
95
|
thread_safe (0.3.6)
|
@@ -104,12 +102,12 @@ PLATFORMS
|
|
104
102
|
DEPENDENCIES
|
105
103
|
actionpack (~> 5.0.0)
|
106
104
|
activerecord (~> 5.0.0)
|
107
|
-
appraisal
|
105
|
+
appraisal
|
108
106
|
lol_dba!
|
109
107
|
railties (~> 5.0.0)
|
110
108
|
rspec-rails
|
111
|
-
simplecov
|
112
|
-
sqlite3 (
|
109
|
+
simplecov
|
110
|
+
sqlite3 (< 1.4)
|
113
111
|
|
114
112
|
BUNDLED WITH
|
115
113
|
2.1.4
|
data/gemfiles/rails_5_1.gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
lol_dba (2.
|
5
|
-
actionpack (>= 3.0, <
|
6
|
-
activerecord (>= 3.0, <
|
7
|
-
railties (>= 3.0, <
|
4
|
+
lol_dba (2.2.0)
|
5
|
+
actionpack (>= 3.0, < 7.0)
|
6
|
+
activerecord (>= 3.0, < 7.0)
|
7
|
+
railties (>= 3.0, < 7.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -39,23 +39,22 @@ GEM
|
|
39
39
|
thor (>= 0.14.0)
|
40
40
|
arel (8.0.0)
|
41
41
|
builder (3.2.4)
|
42
|
-
concurrent-ruby (1.1.
|
42
|
+
concurrent-ruby (1.1.6)
|
43
43
|
crass (1.0.6)
|
44
44
|
diff-lcs (1.3)
|
45
45
|
docile (1.3.2)
|
46
46
|
erubi (1.9.0)
|
47
47
|
i18n (1.8.2)
|
48
48
|
concurrent-ruby (~> 1.0)
|
49
|
-
json (2.3.0)
|
50
49
|
loofah (2.4.0)
|
51
50
|
crass (~> 1.0.2)
|
52
51
|
nokogiri (>= 1.5.9)
|
53
|
-
method_source (0.
|
52
|
+
method_source (1.0.0)
|
54
53
|
mini_portile2 (2.4.0)
|
55
54
|
minitest (5.14.0)
|
56
|
-
nokogiri (1.10.
|
55
|
+
nokogiri (1.10.9)
|
57
56
|
mini_portile2 (~> 2.4.0)
|
58
|
-
rack (2.
|
57
|
+
rack (2.2.2)
|
59
58
|
rack-test (1.1.0)
|
60
59
|
rack (>= 1.0, < 3)
|
61
60
|
rails-dom-testing (2.0.3)
|
@@ -72,26 +71,25 @@ GEM
|
|
72
71
|
rake (13.0.1)
|
73
72
|
rspec-core (3.9.1)
|
74
73
|
rspec-support (~> 3.9.1)
|
75
|
-
rspec-expectations (3.9.
|
74
|
+
rspec-expectations (3.9.1)
|
76
75
|
diff-lcs (>= 1.2.0, < 2.0)
|
77
76
|
rspec-support (~> 3.9.0)
|
78
77
|
rspec-mocks (3.9.1)
|
79
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
79
|
rspec-support (~> 3.9.0)
|
81
|
-
rspec-rails (
|
82
|
-
actionpack (>=
|
83
|
-
activesupport (>=
|
84
|
-
railties (>=
|
85
|
-
rspec-core (~> 3.9
|
86
|
-
rspec-expectations (~> 3.9
|
87
|
-
rspec-mocks (~> 3.9
|
88
|
-
rspec-support (~> 3.9
|
80
|
+
rspec-rails (4.0.0)
|
81
|
+
actionpack (>= 4.2)
|
82
|
+
activesupport (>= 4.2)
|
83
|
+
railties (>= 4.2)
|
84
|
+
rspec-core (~> 3.9)
|
85
|
+
rspec-expectations (~> 3.9)
|
86
|
+
rspec-mocks (~> 3.9)
|
87
|
+
rspec-support (~> 3.9)
|
89
88
|
rspec-support (3.9.2)
|
90
|
-
simplecov (0.
|
89
|
+
simplecov (0.18.5)
|
91
90
|
docile (~> 1.1)
|
92
|
-
|
93
|
-
|
94
|
-
simplecov-html (0.10.2)
|
91
|
+
simplecov-html (~> 0.11)
|
92
|
+
simplecov-html (0.12.2)
|
95
93
|
sqlite3 (1.3.13)
|
96
94
|
thor (1.0.1)
|
97
95
|
thread_safe (0.3.6)
|
@@ -104,12 +102,12 @@ PLATFORMS
|
|
104
102
|
DEPENDENCIES
|
105
103
|
actionpack (~> 5.1.0)
|
106
104
|
activerecord (~> 5.1.0)
|
107
|
-
appraisal
|
105
|
+
appraisal
|
108
106
|
lol_dba!
|
109
107
|
railties (~> 5.1.0)
|
110
108
|
rspec-rails
|
111
|
-
simplecov
|
112
|
-
sqlite3 (
|
109
|
+
simplecov
|
110
|
+
sqlite3 (< 1.4)
|
113
111
|
|
114
112
|
BUNDLED WITH
|
115
113
|
2.1.4
|
data/gemfiles/rails_5_2.gemfile
CHANGED
@@ -1,34 +1,34 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
lol_dba (2.
|
5
|
-
actionpack (>= 3.0, <
|
6
|
-
activerecord (>= 3.0, <
|
7
|
-
railties (>= 3.0, <
|
4
|
+
lol_dba (2.2.0)
|
5
|
+
actionpack (>= 3.0, < 7.0)
|
6
|
+
activerecord (>= 3.0, < 7.0)
|
7
|
+
railties (>= 3.0, < 7.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actionpack (5.2.4.
|
13
|
-
actionview (= 5.2.4.
|
14
|
-
activesupport (= 5.2.4.
|
12
|
+
actionpack (5.2.4.2)
|
13
|
+
actionview (= 5.2.4.2)
|
14
|
+
activesupport (= 5.2.4.2)
|
15
15
|
rack (~> 2.0, >= 2.0.8)
|
16
16
|
rack-test (>= 0.6.3)
|
17
17
|
rails-dom-testing (~> 2.0)
|
18
18
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
-
actionview (5.2.4.
|
20
|
-
activesupport (= 5.2.4.
|
19
|
+
actionview (5.2.4.2)
|
20
|
+
activesupport (= 5.2.4.2)
|
21
21
|
builder (~> 3.1)
|
22
22
|
erubi (~> 1.4)
|
23
23
|
rails-dom-testing (~> 2.0)
|
24
24
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
25
|
-
activemodel (5.2.4.
|
26
|
-
activesupport (= 5.2.4.
|
27
|
-
activerecord (5.2.4.
|
28
|
-
activemodel (= 5.2.4.
|
29
|
-
activesupport (= 5.2.4.
|
25
|
+
activemodel (5.2.4.2)
|
26
|
+
activesupport (= 5.2.4.2)
|
27
|
+
activerecord (5.2.4.2)
|
28
|
+
activemodel (= 5.2.4.2)
|
29
|
+
activesupport (= 5.2.4.2)
|
30
30
|
arel (>= 9.0)
|
31
|
-
activesupport (5.2.4.
|
31
|
+
activesupport (5.2.4.2)
|
32
32
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
33
33
|
i18n (>= 0.7, < 2)
|
34
34
|
minitest (~> 5.1)
|
@@ -39,23 +39,22 @@ GEM
|
|
39
39
|
thor (>= 0.14.0)
|
40
40
|
arel (9.0.0)
|
41
41
|
builder (3.2.4)
|
42
|
-
concurrent-ruby (1.1.
|
42
|
+
concurrent-ruby (1.1.6)
|
43
43
|
crass (1.0.6)
|
44
44
|
diff-lcs (1.3)
|
45
45
|
docile (1.3.2)
|
46
46
|
erubi (1.9.0)
|
47
47
|
i18n (1.8.2)
|
48
48
|
concurrent-ruby (~> 1.0)
|
49
|
-
json (2.3.0)
|
50
49
|
loofah (2.4.0)
|
51
50
|
crass (~> 1.0.2)
|
52
51
|
nokogiri (>= 1.5.9)
|
53
|
-
method_source (0.
|
52
|
+
method_source (1.0.0)
|
54
53
|
mini_portile2 (2.4.0)
|
55
54
|
minitest (5.14.0)
|
56
|
-
nokogiri (1.10.
|
55
|
+
nokogiri (1.10.9)
|
57
56
|
mini_portile2 (~> 2.4.0)
|
58
|
-
rack (2.
|
57
|
+
rack (2.2.2)
|
59
58
|
rack-test (1.1.0)
|
60
59
|
rack (>= 1.0, < 3)
|
61
60
|
rails-dom-testing (2.0.3)
|
@@ -63,35 +62,34 @@ GEM
|
|
63
62
|
nokogiri (>= 1.6)
|
64
63
|
rails-html-sanitizer (1.3.0)
|
65
64
|
loofah (~> 2.3)
|
66
|
-
railties (5.2.4.
|
67
|
-
actionpack (= 5.2.4.
|
68
|
-
activesupport (= 5.2.4.
|
65
|
+
railties (5.2.4.2)
|
66
|
+
actionpack (= 5.2.4.2)
|
67
|
+
activesupport (= 5.2.4.2)
|
69
68
|
method_source
|
70
69
|
rake (>= 0.8.7)
|
71
70
|
thor (>= 0.19.0, < 2.0)
|
72
71
|
rake (13.0.1)
|
73
72
|
rspec-core (3.9.1)
|
74
73
|
rspec-support (~> 3.9.1)
|
75
|
-
rspec-expectations (3.9.
|
74
|
+
rspec-expectations (3.9.1)
|
76
75
|
diff-lcs (>= 1.2.0, < 2.0)
|
77
76
|
rspec-support (~> 3.9.0)
|
78
77
|
rspec-mocks (3.9.1)
|
79
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
79
|
rspec-support (~> 3.9.0)
|
81
|
-
rspec-rails (
|
82
|
-
actionpack (>=
|
83
|
-
activesupport (>=
|
84
|
-
railties (>=
|
85
|
-
rspec-core (~> 3.9
|
86
|
-
rspec-expectations (~> 3.9
|
87
|
-
rspec-mocks (~> 3.9
|
88
|
-
rspec-support (~> 3.9
|
80
|
+
rspec-rails (4.0.0)
|
81
|
+
actionpack (>= 4.2)
|
82
|
+
activesupport (>= 4.2)
|
83
|
+
railties (>= 4.2)
|
84
|
+
rspec-core (~> 3.9)
|
85
|
+
rspec-expectations (~> 3.9)
|
86
|
+
rspec-mocks (~> 3.9)
|
87
|
+
rspec-support (~> 3.9)
|
89
88
|
rspec-support (3.9.2)
|
90
|
-
simplecov (0.
|
89
|
+
simplecov (0.18.5)
|
91
90
|
docile (~> 1.1)
|
92
|
-
|
93
|
-
|
94
|
-
simplecov-html (0.10.2)
|
91
|
+
simplecov-html (~> 0.11)
|
92
|
+
simplecov-html (0.12.2)
|
95
93
|
sqlite3 (1.3.13)
|
96
94
|
thor (1.0.1)
|
97
95
|
thread_safe (0.3.6)
|
@@ -104,12 +102,12 @@ PLATFORMS
|
|
104
102
|
DEPENDENCIES
|
105
103
|
actionpack (~> 5.2.0)
|
106
104
|
activerecord (~> 5.2.0)
|
107
|
-
appraisal
|
105
|
+
appraisal
|
108
106
|
lol_dba!
|
109
107
|
railties (~> 5.2.0)
|
110
108
|
rspec-rails
|
111
|
-
simplecov
|
112
|
-
sqlite3 (
|
109
|
+
simplecov
|
110
|
+
sqlite3 (< 1.4)
|
113
111
|
|
114
112
|
BUNDLED WITH
|
115
113
|
2.1.4
|