lol_dba 2.1.5 → 2.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +179 -0
  3. data/.gitignore +1 -1
  4. data/.rspec +2 -0
  5. data/.rubocop.yml +7 -0
  6. data/.travis.yml +16 -9
  7. data/Appraisals +19 -12
  8. data/Gemfile +1 -8
  9. data/Gemfile.lock +60 -59
  10. data/README.md +5 -2
  11. data/Rakefile +4 -4
  12. data/bin/lol_dba +2 -2
  13. data/gemfiles/rails_3_2.gemfile +0 -3
  14. data/gemfiles/rails_3_2.gemfile.lock +33 -31
  15. data/gemfiles/rails_4_0.gemfile +0 -3
  16. data/gemfiles/rails_4_0.gemfile.lock +31 -27
  17. data/gemfiles/rails_4_1.gemfile +0 -3
  18. data/gemfiles/rails_4_1.gemfile.lock +29 -26
  19. data/gemfiles/rails_4_2.gemfile +0 -3
  20. data/gemfiles/rails_4_2.gemfile.lock +52 -48
  21. data/gemfiles/rails_5_0.gemfile +0 -3
  22. data/gemfiles/rails_5_0.gemfile.lock +55 -51
  23. data/gemfiles/rails_5_1.gemfile +0 -3
  24. data/gemfiles/rails_5_1.gemfile.lock +57 -53
  25. data/gemfiles/rails_5_2.gemfile +9 -0
  26. data/gemfiles/rails_5_2.gemfile.lock +115 -0
  27. data/lib/lol_dba/cli.rb +26 -15
  28. data/lib/lol_dba/index_finding/belongs_to.rb +32 -0
  29. data/lib/lol_dba/index_finding/error_logging.rb +15 -0
  30. data/lib/lol_dba/index_finding/has_and_belongs_to_many.rb +20 -0
  31. data/lib/lol_dba/index_finding/has_many.rb +47 -0
  32. data/lib/lol_dba/index_finding/index_finder.rb +81 -0
  33. data/lib/lol_dba/index_finding/migration_formatter.rb +50 -0
  34. data/lib/lol_dba/index_finding/relation_inspector.rb +30 -0
  35. data/lib/lol_dba/index_finding/relation_inspector_factory.rb +13 -0
  36. data/lib/lol_dba/rails_compatibility.rb +47 -0
  37. data/lib/lol_dba/railtie.rb +2 -2
  38. data/lib/lol_dba/sql_migrations/migration.rb +51 -0
  39. data/lib/lol_dba/sql_migrations/migration_mocker.rb +70 -0
  40. data/lib/lol_dba/sql_migrations/sql_generator.rb +49 -0
  41. data/lib/lol_dba/sql_migrations/writer.rb +29 -0
  42. data/lib/lol_dba/version.rb +1 -1
  43. data/lib/lol_dba.rb +14 -188
  44. data/lib/tasks/lol_dba.rake +7 -8
  45. data/lol_dba.gemspec +19 -16
  46. data/spec/associations_index_spec.rb +43 -56
  47. data/spec/fixtures/app/models/address.rb +0 -1
  48. data/spec/fixtures/app/models/billable_week.rb +1 -3
  49. data/spec/fixtures/app/models/company.rb +0 -1
  50. data/spec/fixtures/app/models/complex_billable_week.rb +0 -1
  51. data/spec/fixtures/app/models/complex_timesheet.rb +0 -1
  52. data/spec/fixtures/app/models/country.rb +1 -1
  53. data/spec/fixtures/app/models/favourite.rb +0 -2
  54. data/spec/fixtures/app/models/freelancer.rb +1 -3
  55. data/spec/fixtures/app/models/gift.rb +0 -2
  56. data/spec/fixtures/app/models/god.rb +1 -1
  57. data/spec/fixtures/app/models/project.rb +0 -2
  58. data/spec/fixtures/app/models/timesheet.rb +1 -3
  59. data/spec/fixtures/app/models/user.rb +0 -2
  60. data/spec/fixtures/app/models/worker.rb +0 -1
  61. data/spec/fixtures/app/models/worker_user.rb +2 -3
  62. data/spec/fixtures/schema.rb +53 -53
  63. data/spec/migration_formatter_spec.rb +66 -0
  64. data/spec/spec_helper.rb +17 -9
  65. data/spec/sql_generator_spec.rb +9 -0
  66. metadata +88 -19
  67. data/lib/lol_dba/migration.rb +0 -40
  68. data/lib/lol_dba/sql_generator.rb +0 -96
  69. data/lib/lol_dba/writer.rb +0 -25
  70. data/spec/common_function_spec.rb +0 -96
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.1.4)
5
- actionpack (>= 3.0)
6
- activerecord (>= 3.0)
7
- railties (>= 3.0)
4
+ lol_dba (2.1.5)
5
+ actionpack (>= 3.0, < 6.0)
6
+ activerecord (>= 3.0, < 6.0)
7
+ railties (>= 3.0, < 6.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -36,14 +36,15 @@ GEM
36
36
  thor (>= 0.14.0)
37
37
  arel (4.0.2)
38
38
  builder (3.1.4)
39
- concurrent-ruby (1.0.5)
39
+ concurrent-ruby (1.1.5)
40
40
  diff-lcs (1.3)
41
+ docile (1.3.1)
41
42
  erubis (2.7.0)
42
43
  i18n (0.9.5)
43
44
  concurrent-ruby (~> 1.0)
45
+ json (2.2.0)
44
46
  minitest (4.7.5)
45
47
  multi_json (1.13.1)
46
- power_assert (1.1.1)
47
48
  rack (1.5.5)
48
49
  rack-test (0.6.3)
49
50
  rack (>= 1.0)
@@ -52,30 +53,33 @@ GEM
52
53
  activesupport (= 4.0.13)
53
54
  rake (>= 0.8.7)
54
55
  thor (>= 0.18.1, < 2.0)
55
- rake (12.3.0)
56
- rspec-core (3.7.1)
57
- rspec-support (~> 3.7.0)
58
- rspec-expectations (3.7.0)
56
+ rake (12.3.2)
57
+ rspec-core (3.8.0)
58
+ rspec-support (~> 3.8.0)
59
+ rspec-expectations (3.8.2)
59
60
  diff-lcs (>= 1.2.0, < 2.0)
60
- rspec-support (~> 3.7.0)
61
- rspec-mocks (3.7.0)
61
+ rspec-support (~> 3.8.0)
62
+ rspec-mocks (3.8.0)
62
63
  diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.7.0)
64
- rspec-rails (3.7.2)
64
+ rspec-support (~> 3.8.0)
65
+ rspec-rails (3.8.2)
65
66
  actionpack (>= 3.0)
66
67
  activesupport (>= 3.0)
67
68
  railties (>= 3.0)
68
- rspec-core (~> 3.7.0)
69
- rspec-expectations (~> 3.7.0)
70
- rspec-mocks (~> 3.7.0)
71
- rspec-support (~> 3.7.0)
72
- rspec-support (3.7.1)
69
+ rspec-core (~> 3.8.0)
70
+ rspec-expectations (~> 3.8.0)
71
+ rspec-mocks (~> 3.8.0)
72
+ rspec-support (~> 3.8.0)
73
+ rspec-support (3.8.0)
74
+ simplecov (0.16.1)
75
+ docile (~> 1.1)
76
+ json (>= 1.8, < 3)
77
+ simplecov-html (~> 0.10.0)
78
+ simplecov-html (0.10.2)
73
79
  sqlite3 (1.3.13)
74
- test-unit (3.2.7)
75
- power_assert
76
- thor (0.20.0)
80
+ thor (0.20.3)
77
81
  thread_safe (0.3.6)
78
- tzinfo (0.3.53)
82
+ tzinfo (0.3.55)
79
83
 
80
84
  PLATFORMS
81
85
  ruby
@@ -83,12 +87,12 @@ PLATFORMS
83
87
  DEPENDENCIES
84
88
  actionpack (~> 4.0.13)
85
89
  activerecord (~> 4.0.13)
86
- appraisal
90
+ appraisal (~> 2.2)
87
91
  lol_dba!
88
92
  railties (~> 4.0.13)
89
93
  rspec-rails
90
- sqlite3
91
- test-unit
94
+ simplecov (~> 0.1)
95
+ sqlite3 (~> 1.3.5)
92
96
 
93
97
  BUNDLED WITH
94
- 1.16.1
98
+ 1.17.3
@@ -5,8 +5,5 @@ source "https://rubygems.org"
5
5
  gem "activerecord", "~> 4.1.9"
6
6
  gem "actionpack", "~> 4.1.9"
7
7
  gem "railties", "~> 4.1.9"
8
- gem "rspec-rails"
9
- gem "test-unit"
10
- gem "sqlite3"
11
8
 
12
9
  gemspec path: "../"
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.1.4)
5
- actionpack (>= 3.0)
6
- activerecord (>= 3.0)
7
- railties (>= 3.0)
4
+ lol_dba (2.1.5)
5
+ actionpack (>= 3.0, < 6.0)
6
+ activerecord (>= 3.0, < 6.0)
7
+ railties (>= 3.0, < 6.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -37,14 +37,14 @@ GEM
37
37
  thor (>= 0.14.0)
38
38
  arel (5.0.1.20140414130214)
39
39
  builder (3.2.3)
40
- concurrent-ruby (1.0.5)
40
+ concurrent-ruby (1.1.5)
41
41
  diff-lcs (1.3)
42
+ docile (1.3.1)
42
43
  erubis (2.7.0)
43
44
  i18n (0.9.5)
44
45
  concurrent-ruby (~> 1.0)
45
46
  json (1.8.6)
46
47
  minitest (5.11.3)
47
- power_assert (1.1.1)
48
48
  rack (1.5.5)
49
49
  rack-test (0.6.3)
50
50
  rack (>= 1.0)
@@ -53,28 +53,31 @@ GEM
53
53
  activesupport (= 4.1.16)
54
54
  rake (>= 0.8.7)
55
55
  thor (>= 0.18.1, < 2.0)
56
- rake (12.3.0)
57
- rspec-core (3.7.1)
58
- rspec-support (~> 3.7.0)
59
- rspec-expectations (3.7.0)
56
+ rake (12.3.2)
57
+ rspec-core (3.8.0)
58
+ rspec-support (~> 3.8.0)
59
+ rspec-expectations (3.8.2)
60
60
  diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.7.0)
62
- rspec-mocks (3.7.0)
61
+ rspec-support (~> 3.8.0)
62
+ rspec-mocks (3.8.0)
63
63
  diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.7.0)
65
- rspec-rails (3.7.2)
64
+ rspec-support (~> 3.8.0)
65
+ rspec-rails (3.8.2)
66
66
  actionpack (>= 3.0)
67
67
  activesupport (>= 3.0)
68
68
  railties (>= 3.0)
69
- rspec-core (~> 3.7.0)
70
- rspec-expectations (~> 3.7.0)
71
- rspec-mocks (~> 3.7.0)
72
- rspec-support (~> 3.7.0)
73
- rspec-support (3.7.1)
69
+ rspec-core (~> 3.8.0)
70
+ rspec-expectations (~> 3.8.0)
71
+ rspec-mocks (~> 3.8.0)
72
+ rspec-support (~> 3.8.0)
73
+ rspec-support (3.8.0)
74
+ simplecov (0.16.1)
75
+ docile (~> 1.1)
76
+ json (>= 1.8, < 3)
77
+ simplecov-html (~> 0.10.0)
78
+ simplecov-html (0.10.2)
74
79
  sqlite3 (1.3.13)
75
- test-unit (3.2.7)
76
- power_assert
77
- thor (0.20.0)
80
+ thor (0.20.3)
78
81
  thread_safe (0.3.6)
79
82
  tzinfo (1.2.5)
80
83
  thread_safe (~> 0.1)
@@ -85,12 +88,12 @@ PLATFORMS
85
88
  DEPENDENCIES
86
89
  actionpack (~> 4.1.9)
87
90
  activerecord (~> 4.1.9)
88
- appraisal
91
+ appraisal (~> 2.2)
89
92
  lol_dba!
90
93
  railties (~> 4.1.9)
91
94
  rspec-rails
92
- sqlite3
93
- test-unit
95
+ simplecov (~> 0.1)
96
+ sqlite3 (~> 1.3.5)
94
97
 
95
98
  BUNDLED WITH
96
- 1.16.1
99
+ 1.17.3
@@ -5,8 +5,5 @@ source "https://rubygems.org"
5
5
  gem "activerecord", "~> 4.2.0"
6
6
  gem "actionpack", "~> 4.2.0"
7
7
  gem "railties", "~> 4.2.0"
8
- gem "rspec-rails"
9
- gem "test-unit"
10
- gem "sqlite3"
11
8
 
12
9
  gemspec path: "../"
@@ -1,35 +1,35 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.1.4)
5
- actionpack (>= 3.0)
6
- activerecord (>= 3.0)
7
- railties (>= 3.0)
4
+ lol_dba (2.1.5)
5
+ actionpack (>= 3.0, < 6.0)
6
+ activerecord (>= 3.0, < 6.0)
7
+ railties (>= 3.0, < 6.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (4.2.10)
13
- actionview (= 4.2.10)
14
- activesupport (= 4.2.10)
12
+ actionpack (4.2.11.1)
13
+ actionview (= 4.2.11.1)
14
+ activesupport (= 4.2.11.1)
15
15
  rack (~> 1.6)
16
16
  rack-test (~> 0.6.2)
17
17
  rails-dom-testing (~> 1.0, >= 1.0.5)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (4.2.10)
20
- activesupport (= 4.2.10)
19
+ actionview (4.2.11.1)
20
+ activesupport (= 4.2.11.1)
21
21
  builder (~> 3.1)
22
22
  erubis (~> 2.7.0)
23
23
  rails-dom-testing (~> 1.0, >= 1.0.5)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (4.2.10)
26
- activesupport (= 4.2.10)
25
+ activemodel (4.2.11.1)
26
+ activesupport (= 4.2.11.1)
27
27
  builder (~> 3.1)
28
- activerecord (4.2.10)
29
- activemodel (= 4.2.10)
30
- activesupport (= 4.2.10)
28
+ activerecord (4.2.11.1)
29
+ activemodel (= 4.2.11.1)
30
+ activesupport (= 4.2.11.1)
31
31
  arel (~> 6.0)
32
- activesupport (4.2.10)
32
+ activesupport (4.2.11.1)
33
33
  i18n (~> 0.7)
34
34
  minitest (~> 5.1)
35
35
  thread_safe (~> 0.3, >= 0.3.4)
@@ -40,21 +40,22 @@ GEM
40
40
  thor (>= 0.14.0)
41
41
  arel (6.0.4)
42
42
  builder (3.2.3)
43
- concurrent-ruby (1.0.5)
44
- crass (1.0.3)
43
+ concurrent-ruby (1.1.5)
44
+ crass (1.0.4)
45
45
  diff-lcs (1.3)
46
+ docile (1.3.1)
46
47
  erubis (2.7.0)
47
48
  i18n (0.9.5)
48
49
  concurrent-ruby (~> 1.0)
49
- loofah (2.2.0)
50
+ json (2.2.0)
51
+ loofah (2.2.3)
50
52
  crass (~> 1.0.2)
51
53
  nokogiri (>= 1.5.9)
52
- mini_portile2 (2.3.0)
54
+ mini_portile2 (2.4.0)
53
55
  minitest (5.11.3)
54
- nokogiri (1.8.2)
55
- mini_portile2 (~> 2.3.0)
56
- power_assert (1.1.1)
57
- rack (1.6.9)
56
+ nokogiri (1.10.2)
57
+ mini_portile2 (~> 2.4.0)
58
+ rack (1.6.11)
58
59
  rack-test (0.6.3)
59
60
  rack (>= 1.0)
60
61
  rails-deprecated_sanitizer (1.0.3)
@@ -63,35 +64,38 @@ GEM
63
64
  activesupport (>= 4.2.0, < 5.0)
64
65
  nokogiri (~> 1.6)
65
66
  rails-deprecated_sanitizer (>= 1.0.1)
66
- rails-html-sanitizer (1.0.3)
67
- loofah (~> 2.0)
68
- railties (4.2.10)
69
- actionpack (= 4.2.10)
70
- activesupport (= 4.2.10)
67
+ rails-html-sanitizer (1.0.4)
68
+ loofah (~> 2.2, >= 2.2.2)
69
+ railties (4.2.11.1)
70
+ actionpack (= 4.2.11.1)
71
+ activesupport (= 4.2.11.1)
71
72
  rake (>= 0.8.7)
72
73
  thor (>= 0.18.1, < 2.0)
73
- rake (12.3.0)
74
- rspec-core (3.7.1)
75
- rspec-support (~> 3.7.0)
76
- rspec-expectations (3.7.0)
74
+ rake (12.3.2)
75
+ rspec-core (3.8.0)
76
+ rspec-support (~> 3.8.0)
77
+ rspec-expectations (3.8.2)
77
78
  diff-lcs (>= 1.2.0, < 2.0)
78
- rspec-support (~> 3.7.0)
79
- rspec-mocks (3.7.0)
79
+ rspec-support (~> 3.8.0)
80
+ rspec-mocks (3.8.0)
80
81
  diff-lcs (>= 1.2.0, < 2.0)
81
- rspec-support (~> 3.7.0)
82
- rspec-rails (3.7.2)
82
+ rspec-support (~> 3.8.0)
83
+ rspec-rails (3.8.2)
83
84
  actionpack (>= 3.0)
84
85
  activesupport (>= 3.0)
85
86
  railties (>= 3.0)
86
- rspec-core (~> 3.7.0)
87
- rspec-expectations (~> 3.7.0)
88
- rspec-mocks (~> 3.7.0)
89
- rspec-support (~> 3.7.0)
90
- rspec-support (3.7.1)
87
+ rspec-core (~> 3.8.0)
88
+ rspec-expectations (~> 3.8.0)
89
+ rspec-mocks (~> 3.8.0)
90
+ rspec-support (~> 3.8.0)
91
+ rspec-support (3.8.0)
92
+ simplecov (0.16.1)
93
+ docile (~> 1.1)
94
+ json (>= 1.8, < 3)
95
+ simplecov-html (~> 0.10.0)
96
+ simplecov-html (0.10.2)
91
97
  sqlite3 (1.3.13)
92
- test-unit (3.2.7)
93
- power_assert
94
- thor (0.20.0)
98
+ thor (0.20.3)
95
99
  thread_safe (0.3.6)
96
100
  tzinfo (1.2.5)
97
101
  thread_safe (~> 0.1)
@@ -102,12 +106,12 @@ PLATFORMS
102
106
  DEPENDENCIES
103
107
  actionpack (~> 4.2.0)
104
108
  activerecord (~> 4.2.0)
105
- appraisal
109
+ appraisal (~> 2.2)
106
110
  lol_dba!
107
111
  railties (~> 4.2.0)
108
112
  rspec-rails
109
- sqlite3
110
- test-unit
113
+ simplecov (~> 0.1)
114
+ sqlite3 (~> 1.3.5)
111
115
 
112
116
  BUNDLED WITH
113
- 1.16.1
117
+ 1.17.3
@@ -5,8 +5,5 @@ source "https://rubygems.org"
5
5
  gem "activerecord", "~> 5.0.0"
6
6
  gem "actionpack", "~> 5.0.0"
7
7
  gem "railties", "~> 5.0.0"
8
- gem "rspec-rails"
9
- gem "test-unit"
10
- gem "sqlite3"
11
8
 
12
9
  gemspec path: "../"
@@ -1,36 +1,36 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.1.4)
5
- actionpack (>= 3.0)
6
- activerecord (>= 3.0)
7
- railties (>= 3.0)
4
+ lol_dba (2.1.5)
5
+ actionpack (>= 3.0, < 6.0)
6
+ activerecord (>= 3.0, < 6.0)
7
+ railties (>= 3.0, < 6.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (5.0.6)
13
- actionview (= 5.0.6)
14
- activesupport (= 5.0.6)
12
+ actionpack (5.0.7.2)
13
+ actionview (= 5.0.7.2)
14
+ activesupport (= 5.0.7.2)
15
15
  rack (~> 2.0)
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.0.6)
20
- activesupport (= 5.0.6)
19
+ actionview (5.0.7.2)
20
+ activesupport (= 5.0.7.2)
21
21
  builder (~> 3.1)
22
22
  erubis (~> 2.7.0)
23
23
  rails-dom-testing (~> 2.0)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (5.0.6)
26
- activesupport (= 5.0.6)
27
- activerecord (5.0.6)
28
- activemodel (= 5.0.6)
29
- activesupport (= 5.0.6)
25
+ activemodel (5.0.7.2)
26
+ activesupport (= 5.0.7.2)
27
+ activerecord (5.0.7.2)
28
+ activemodel (= 5.0.7.2)
29
+ activesupport (= 5.0.7.2)
30
30
  arel (~> 7.0)
31
- activesupport (5.0.6)
31
+ activesupport (5.0.7.2)
32
32
  concurrent-ruby (~> 1.0, >= 1.0.2)
33
- i18n (~> 0.7)
33
+ i18n (>= 0.7, < 2)
34
34
  minitest (~> 5.1)
35
35
  tzinfo (~> 1.1)
36
36
  appraisal (2.2.0)
@@ -39,57 +39,61 @@ GEM
39
39
  thor (>= 0.14.0)
40
40
  arel (7.1.4)
41
41
  builder (3.2.3)
42
- concurrent-ruby (1.0.5)
43
- crass (1.0.3)
42
+ concurrent-ruby (1.1.5)
43
+ crass (1.0.4)
44
44
  diff-lcs (1.3)
45
+ docile (1.3.1)
45
46
  erubis (2.7.0)
46
- i18n (0.9.5)
47
+ i18n (1.6.0)
47
48
  concurrent-ruby (~> 1.0)
48
- loofah (2.2.0)
49
+ json (2.2.0)
50
+ loofah (2.2.3)
49
51
  crass (~> 1.0.2)
50
52
  nokogiri (>= 1.5.9)
51
- method_source (0.9.0)
52
- mini_portile2 (2.3.0)
53
+ method_source (0.9.2)
54
+ mini_portile2 (2.4.0)
53
55
  minitest (5.11.3)
54
- nokogiri (1.8.2)
55
- mini_portile2 (~> 2.3.0)
56
- power_assert (1.1.1)
57
- rack (2.0.4)
56
+ nokogiri (1.10.2)
57
+ mini_portile2 (~> 2.4.0)
58
+ rack (2.0.7)
58
59
  rack-test (0.6.3)
59
60
  rack (>= 1.0)
60
61
  rails-dom-testing (2.0.3)
61
62
  activesupport (>= 4.2.0)
62
63
  nokogiri (>= 1.6)
63
- rails-html-sanitizer (1.0.3)
64
- loofah (~> 2.0)
65
- railties (5.0.6)
66
- actionpack (= 5.0.6)
67
- activesupport (= 5.0.6)
64
+ rails-html-sanitizer (1.0.4)
65
+ loofah (~> 2.2, >= 2.2.2)
66
+ railties (5.0.7.2)
67
+ actionpack (= 5.0.7.2)
68
+ activesupport (= 5.0.7.2)
68
69
  method_source
69
70
  rake (>= 0.8.7)
70
71
  thor (>= 0.18.1, < 2.0)
71
- rake (12.3.0)
72
- rspec-core (3.7.1)
73
- rspec-support (~> 3.7.0)
74
- rspec-expectations (3.7.0)
72
+ rake (12.3.2)
73
+ rspec-core (3.8.0)
74
+ rspec-support (~> 3.8.0)
75
+ rspec-expectations (3.8.2)
75
76
  diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.7.0)
77
- rspec-mocks (3.7.0)
77
+ rspec-support (~> 3.8.0)
78
+ rspec-mocks (3.8.0)
78
79
  diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.7.0)
80
- rspec-rails (3.7.2)
80
+ rspec-support (~> 3.8.0)
81
+ rspec-rails (3.8.2)
81
82
  actionpack (>= 3.0)
82
83
  activesupport (>= 3.0)
83
84
  railties (>= 3.0)
84
- rspec-core (~> 3.7.0)
85
- rspec-expectations (~> 3.7.0)
86
- rspec-mocks (~> 3.7.0)
87
- rspec-support (~> 3.7.0)
88
- rspec-support (3.7.1)
85
+ rspec-core (~> 3.8.0)
86
+ rspec-expectations (~> 3.8.0)
87
+ rspec-mocks (~> 3.8.0)
88
+ rspec-support (~> 3.8.0)
89
+ rspec-support (3.8.0)
90
+ simplecov (0.16.1)
91
+ docile (~> 1.1)
92
+ json (>= 1.8, < 3)
93
+ simplecov-html (~> 0.10.0)
94
+ simplecov-html (0.10.2)
89
95
  sqlite3 (1.3.13)
90
- test-unit (3.2.7)
91
- power_assert
92
- thor (0.20.0)
96
+ thor (0.20.3)
93
97
  thread_safe (0.3.6)
94
98
  tzinfo (1.2.5)
95
99
  thread_safe (~> 0.1)
@@ -100,12 +104,12 @@ PLATFORMS
100
104
  DEPENDENCIES
101
105
  actionpack (~> 5.0.0)
102
106
  activerecord (~> 5.0.0)
103
- appraisal
107
+ appraisal (~> 2.2)
104
108
  lol_dba!
105
109
  railties (~> 5.0.0)
106
110
  rspec-rails
107
- sqlite3
108
- test-unit
111
+ simplecov (~> 0.1)
112
+ sqlite3 (~> 1.3.5)
109
113
 
110
114
  BUNDLED WITH
111
- 1.16.1
115
+ 1.17.3
@@ -5,8 +5,5 @@ source "https://rubygems.org"
5
5
  gem "activerecord", "~> 5.1.0"
6
6
  gem "actionpack", "~> 5.1.0"
7
7
  gem "railties", "~> 5.1.0"
8
- gem "rspec-rails"
9
- gem "test-unit"
10
- gem "sqlite3"
11
8
 
12
9
  gemspec path: "../"