lol_dba 2.4.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/{rubyonrails.yml → build.yml} +8 -4
- data/Appraisals +74 -61
- data/Gemfile.lock +123 -68
- data/README.md +2 -2
- data/gemfiles/rails_3_2.gemfile.lock +9 -10
- data/gemfiles/rails_4_0.gemfile.lock +9 -10
- data/gemfiles/rails_4_1.gemfile.lock +11 -12
- data/gemfiles/rails_4_2.gemfile.lock +24 -25
- data/gemfiles/rails_5_0.gemfile.lock +25 -26
- data/gemfiles/rails_5_1.gemfile.lock +26 -27
- data/gemfiles/rails_5_2.gemfile.lock +26 -27
- data/gemfiles/rails_6.gemfile.lock +46 -46
- data/gemfiles/rails_7.gemfile.lock +134 -69
- data/gemfiles/rails_8.gemfile +11 -0
- data/gemfiles/rails_8.gemfile.lock +170 -0
- data/lib/lol_dba/index_finding/index_finder.rb +1 -1
- data/lib/lol_dba/rails_compatibility.rb +7 -1
- data/lib/lol_dba/version.rb +1 -1
- data/spec/index_finder_spec.rb +12 -0
- metadata +6 -5
- data/.travis.yml +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 880e03f62f7e7d8621eb06a192b08967efe4ef29ea4e7c0df184a52fedbad59b
|
|
4
|
+
data.tar.gz: a37e4086b4c3c29eb2ceaa793333153f4a84c6b53ab114e942181fe9bfd174cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08e4fc3b309a383dd528b02b081076f11cc3ccb51a789772744136fc09fcaf333132e511d2d0072cbed15bee21c0d244f87cafed1b3a2f0bd904def9589add4f'
|
|
7
|
+
data.tar.gz: 9934a22ad401e64e0332b51900d90a2bd58925b95586b68fe79a60f0a434bb7cae562f8cbd0a651d9713245e1084efddbe5a5076d91755c26bffba67ffcb2dea
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: "
|
|
1
|
+
name: "build"
|
|
2
2
|
on:
|
|
3
3
|
push:
|
|
4
4
|
branches: [ "master" ]
|
|
@@ -10,15 +10,16 @@ jobs:
|
|
|
10
10
|
strategy:
|
|
11
11
|
fail-fast: false
|
|
12
12
|
matrix:
|
|
13
|
-
ruby-version: [2.7]
|
|
13
|
+
ruby-version: [2.7, "3.0", 3.1, 3.2]
|
|
14
14
|
continue-on-error: ${{ endsWith(matrix.ruby-version, 'head') }}
|
|
15
15
|
env:
|
|
16
16
|
RAILS_ENV: test
|
|
17
|
+
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
|
|
17
18
|
steps:
|
|
18
19
|
- name: Checkout code
|
|
19
20
|
uses: actions/checkout@v3
|
|
20
21
|
- name: Install Ruby ${{ matrix.ruby-version }} and gems
|
|
21
|
-
uses: ruby/setup-ruby@
|
|
22
|
+
uses: ruby/setup-ruby@v1
|
|
22
23
|
with:
|
|
23
24
|
bundler-cache: true
|
|
24
25
|
ruby-version: ${{ matrix.ruby-version }}
|
|
@@ -26,4 +27,7 @@ jobs:
|
|
|
26
27
|
run: bundle exec appraisal install
|
|
27
28
|
- name: Run tests
|
|
28
29
|
run: bundle exec appraisal rake
|
|
29
|
-
|
|
30
|
+
- name: Report code climate
|
|
31
|
+
uses: paambaati/codeclimate-action@v3.2.0
|
|
32
|
+
env:
|
|
33
|
+
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
|
data/Appraisals
CHANGED
|
@@ -1,79 +1,92 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
version = '~> 3.2.21'
|
|
5
|
-
gem 'activerecord', version
|
|
6
|
-
gem 'actionpack', version
|
|
7
|
-
gem 'railties', version
|
|
8
|
-
gem 'sqlite3', '< 1.4'
|
|
9
|
-
gem 'bigdecimal', '< 2'
|
|
10
|
-
end
|
|
3
|
+
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3')
|
|
11
4
|
|
|
12
|
-
appraise '
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
end
|
|
5
|
+
appraise 'rails_3_2' do
|
|
6
|
+
version = '~> 3.2.21'
|
|
7
|
+
gem 'activerecord', version
|
|
8
|
+
gem 'actionpack', version
|
|
9
|
+
gem 'railties', version
|
|
10
|
+
gem 'sqlite3', '< 1.4'
|
|
11
|
+
gem 'bigdecimal', '< 2'
|
|
12
|
+
end
|
|
20
13
|
|
|
21
|
-
appraise '
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
end
|
|
14
|
+
appraise 'rails_4_0' do
|
|
15
|
+
version = '~> 4.0.13'
|
|
16
|
+
gem 'activerecord', version
|
|
17
|
+
gem 'actionpack', version
|
|
18
|
+
gem 'railties', version
|
|
19
|
+
gem 'sqlite3', '< 1.4'
|
|
20
|
+
gem 'bigdecimal', '< 2'
|
|
21
|
+
end
|
|
29
22
|
|
|
30
|
-
appraise '
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
end
|
|
23
|
+
appraise 'rails_4_1' do
|
|
24
|
+
version = '~> 4.1.9'
|
|
25
|
+
gem 'activerecord', version
|
|
26
|
+
gem 'actionpack', version
|
|
27
|
+
gem 'railties', version
|
|
28
|
+
gem 'sqlite3', '< 1.4'
|
|
29
|
+
gem 'bigdecimal', '< 2'
|
|
30
|
+
end
|
|
38
31
|
|
|
39
|
-
appraise '
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
end
|
|
32
|
+
appraise 'rails_4_2' do
|
|
33
|
+
version = '~> 4.2.0'
|
|
34
|
+
gem 'activerecord', version
|
|
35
|
+
gem 'actionpack', version
|
|
36
|
+
gem 'railties', version
|
|
37
|
+
gem 'sqlite3', '< 1.4'
|
|
38
|
+
gem 'bigdecimal', '< 2'
|
|
39
|
+
end
|
|
47
40
|
|
|
48
|
-
appraise '
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
end
|
|
41
|
+
appraise 'rails_5_0' do
|
|
42
|
+
version = '~> 5.0.0'
|
|
43
|
+
gem 'activerecord', version
|
|
44
|
+
gem 'actionpack', version
|
|
45
|
+
gem 'railties', version
|
|
46
|
+
gem 'sqlite3', '< 1.4'
|
|
47
|
+
gem 'bigdecimal', '< 2'
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
appraise 'rails_5_1' do
|
|
51
|
+
version = '~> 5.1.0'
|
|
52
|
+
gem 'activerecord', version
|
|
53
|
+
gem 'actionpack', version
|
|
54
|
+
gem 'railties', version
|
|
55
|
+
gem 'sqlite3', '< 1.4'
|
|
56
|
+
gem 'bigdecimal', '< 2'
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
appraise 'rails_5_2' do
|
|
60
|
+
version = '~> 5.2.0'
|
|
61
|
+
gem 'activerecord', version
|
|
62
|
+
gem 'actionpack', version
|
|
63
|
+
gem 'railties', version
|
|
64
|
+
gem 'sqlite3', '< 1.4'
|
|
65
|
+
gem 'bigdecimal', '< 2'
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
appraise 'rails_6' do
|
|
69
|
+
version = '~> 6.0'
|
|
70
|
+
gem 'activerecord', version
|
|
71
|
+
gem 'actionpack', version
|
|
72
|
+
gem 'railties', version
|
|
73
|
+
gem 'sqlite3', '~> 1.4'
|
|
74
|
+
gem 'bigdecimal', '< 2'
|
|
75
|
+
end
|
|
56
76
|
|
|
57
|
-
appraise 'rails_5_2' do
|
|
58
|
-
version = '~> 5.2.0'
|
|
59
|
-
gem 'activerecord', version
|
|
60
|
-
gem 'actionpack', version
|
|
61
|
-
gem 'railties', version
|
|
62
|
-
gem 'sqlite3', '< 1.4'
|
|
63
|
-
gem 'bigdecimal', '< 2'
|
|
64
77
|
end
|
|
65
78
|
|
|
66
|
-
appraise '
|
|
67
|
-
version = '~>
|
|
79
|
+
appraise 'rails_7' do
|
|
80
|
+
version = '~> 7.0'
|
|
68
81
|
gem 'activerecord', version
|
|
69
82
|
gem 'actionpack', version
|
|
70
83
|
gem 'railties', version
|
|
71
|
-
gem 'sqlite3'
|
|
72
|
-
gem 'bigdecimal'
|
|
84
|
+
gem 'sqlite3'
|
|
85
|
+
gem 'bigdecimal'
|
|
73
86
|
end
|
|
74
87
|
|
|
75
|
-
appraise '
|
|
76
|
-
version = '~>
|
|
88
|
+
appraise 'rails_8' do
|
|
89
|
+
version = '~> 8.0'
|
|
77
90
|
gem 'activerecord', version
|
|
78
91
|
gem 'actionpack', version
|
|
79
92
|
gem 'railties', version
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
lol_dba (
|
|
4
|
+
lol_dba (3.0.0)
|
|
5
5
|
actionpack
|
|
6
6
|
activerecord
|
|
7
7
|
railties
|
|
@@ -9,94 +9,149 @@ PATH
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
actionpack (
|
|
13
|
-
actionview (=
|
|
14
|
-
activesupport (=
|
|
15
|
-
|
|
12
|
+
actionpack (8.1.2)
|
|
13
|
+
actionview (= 8.1.2)
|
|
14
|
+
activesupport (= 8.1.2)
|
|
15
|
+
nokogiri (>= 1.8.5)
|
|
16
|
+
rack (>= 2.2.4)
|
|
17
|
+
rack-session (>= 1.0.1)
|
|
16
18
|
rack-test (>= 0.6.3)
|
|
17
|
-
rails-dom-testing (~> 2.
|
|
18
|
-
rails-html-sanitizer (~> 1.
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
rails-dom-testing (~> 2.2)
|
|
20
|
+
rails-html-sanitizer (~> 1.6)
|
|
21
|
+
useragent (~> 0.16)
|
|
22
|
+
actionview (8.1.2)
|
|
23
|
+
activesupport (= 8.1.2)
|
|
21
24
|
builder (~> 3.1)
|
|
22
|
-
erubi (~> 1.
|
|
23
|
-
rails-dom-testing (~> 2.
|
|
24
|
-
rails-html-sanitizer (~> 1.
|
|
25
|
-
activemodel (
|
|
26
|
-
activesupport (=
|
|
27
|
-
activerecord (
|
|
28
|
-
activemodel (=
|
|
29
|
-
activesupport (=
|
|
30
|
-
|
|
31
|
-
|
|
25
|
+
erubi (~> 1.11)
|
|
26
|
+
rails-dom-testing (~> 2.2)
|
|
27
|
+
rails-html-sanitizer (~> 1.6)
|
|
28
|
+
activemodel (8.1.2)
|
|
29
|
+
activesupport (= 8.1.2)
|
|
30
|
+
activerecord (8.1.2)
|
|
31
|
+
activemodel (= 8.1.2)
|
|
32
|
+
activesupport (= 8.1.2)
|
|
33
|
+
timeout (>= 0.4.0)
|
|
34
|
+
activesupport (8.1.2)
|
|
35
|
+
base64
|
|
36
|
+
bigdecimal
|
|
37
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
38
|
+
connection_pool (>= 2.2.5)
|
|
39
|
+
drb
|
|
32
40
|
i18n (>= 1.6, < 2)
|
|
41
|
+
json
|
|
42
|
+
logger (>= 1.4.2)
|
|
33
43
|
minitest (>= 5.1)
|
|
34
|
-
|
|
35
|
-
|
|
44
|
+
securerandom (>= 0.3)
|
|
45
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
46
|
+
uri (>= 0.13.1)
|
|
47
|
+
appraisal (2.5.0)
|
|
36
48
|
bundler
|
|
37
49
|
rake
|
|
38
50
|
thor (>= 0.14.0)
|
|
39
|
-
|
|
40
|
-
|
|
51
|
+
base64 (0.3.0)
|
|
52
|
+
bigdecimal (4.0.1)
|
|
53
|
+
builder (3.3.0)
|
|
54
|
+
concurrent-ruby (1.3.6)
|
|
55
|
+
connection_pool (3.0.2)
|
|
41
56
|
crass (1.0.6)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
57
|
+
date (3.5.1)
|
|
58
|
+
diff-lcs (1.6.2)
|
|
59
|
+
docile (1.4.1)
|
|
60
|
+
drb (2.2.3)
|
|
61
|
+
erb (6.0.2)
|
|
62
|
+
erubi (1.13.1)
|
|
63
|
+
i18n (1.14.8)
|
|
46
64
|
concurrent-ruby (~> 1.0)
|
|
47
|
-
|
|
65
|
+
io-console (0.8.2)
|
|
66
|
+
irb (1.17.0)
|
|
67
|
+
pp (>= 0.6.0)
|
|
68
|
+
prism (>= 1.3.0)
|
|
69
|
+
rdoc (>= 4.0.0)
|
|
70
|
+
reline (>= 0.4.2)
|
|
71
|
+
json (2.19.2)
|
|
72
|
+
logger (1.7.0)
|
|
73
|
+
loofah (2.25.1)
|
|
48
74
|
crass (~> 1.0.2)
|
|
49
|
-
nokogiri (>= 1.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
75
|
+
nokogiri (>= 1.12.0)
|
|
76
|
+
mini_portile2 (2.8.9)
|
|
77
|
+
minitest (6.0.2)
|
|
78
|
+
drb (~> 2.0)
|
|
79
|
+
prism (~> 1.5)
|
|
80
|
+
nokogiri (1.19.2)
|
|
81
|
+
mini_portile2 (~> 2.8.2)
|
|
55
82
|
racc (~> 1.4)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
83
|
+
pp (0.6.3)
|
|
84
|
+
prettyprint
|
|
85
|
+
prettyprint (0.2.0)
|
|
86
|
+
prism (1.9.0)
|
|
87
|
+
psych (5.3.1)
|
|
88
|
+
date
|
|
89
|
+
stringio
|
|
90
|
+
racc (1.8.1)
|
|
91
|
+
rack (3.2.5)
|
|
92
|
+
rack-session (2.1.1)
|
|
93
|
+
base64 (>= 0.1.0)
|
|
94
|
+
rack (>= 3.0.0)
|
|
95
|
+
rack-test (2.2.0)
|
|
59
96
|
rack (>= 1.3)
|
|
60
|
-
|
|
61
|
-
|
|
97
|
+
rackup (2.3.1)
|
|
98
|
+
rack (>= 3)
|
|
99
|
+
rails-dom-testing (2.3.0)
|
|
100
|
+
activesupport (>= 5.0.0)
|
|
101
|
+
minitest
|
|
62
102
|
nokogiri (>= 1.6)
|
|
63
|
-
rails-html-sanitizer (1.
|
|
64
|
-
loofah (~> 2.
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
103
|
+
rails-html-sanitizer (1.7.0)
|
|
104
|
+
loofah (~> 2.25)
|
|
105
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
106
|
+
railties (8.1.2)
|
|
107
|
+
actionpack (= 8.1.2)
|
|
108
|
+
activesupport (= 8.1.2)
|
|
109
|
+
irb (~> 1.13)
|
|
110
|
+
rackup (>= 1.0.0)
|
|
69
111
|
rake (>= 12.2)
|
|
70
|
-
thor (~> 1.0)
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
112
|
+
thor (~> 1.0, >= 1.2.2)
|
|
113
|
+
tsort (>= 0.2)
|
|
114
|
+
zeitwerk (~> 2.6)
|
|
115
|
+
rake (13.3.1)
|
|
116
|
+
rdoc (7.2.0)
|
|
117
|
+
erb
|
|
118
|
+
psych (>= 4.0.0)
|
|
119
|
+
tsort
|
|
120
|
+
reline (0.6.3)
|
|
121
|
+
io-console (~> 0.5)
|
|
122
|
+
rspec-core (3.13.6)
|
|
123
|
+
rspec-support (~> 3.13.0)
|
|
124
|
+
rspec-expectations (3.13.5)
|
|
76
125
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
77
|
-
rspec-support (~> 3.
|
|
78
|
-
rspec-mocks (3.
|
|
126
|
+
rspec-support (~> 3.13.0)
|
|
127
|
+
rspec-mocks (3.13.8)
|
|
79
128
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
80
|
-
rspec-support (~> 3.
|
|
81
|
-
rspec-rails (
|
|
82
|
-
actionpack (>=
|
|
83
|
-
activesupport (>=
|
|
84
|
-
railties (>=
|
|
85
|
-
rspec-core (
|
|
86
|
-
rspec-expectations (
|
|
87
|
-
rspec-mocks (
|
|
88
|
-
rspec-support (
|
|
89
|
-
rspec-support (3.
|
|
90
|
-
|
|
129
|
+
rspec-support (~> 3.13.0)
|
|
130
|
+
rspec-rails (8.0.4)
|
|
131
|
+
actionpack (>= 7.2)
|
|
132
|
+
activesupport (>= 7.2)
|
|
133
|
+
railties (>= 7.2)
|
|
134
|
+
rspec-core (>= 3.13.0, < 5.0.0)
|
|
135
|
+
rspec-expectations (>= 3.13.0, < 5.0.0)
|
|
136
|
+
rspec-mocks (>= 3.13.0, < 5.0.0)
|
|
137
|
+
rspec-support (>= 3.13.0, < 5.0.0)
|
|
138
|
+
rspec-support (3.13.7)
|
|
139
|
+
securerandom (0.4.1)
|
|
140
|
+
simplecov (0.22.0)
|
|
91
141
|
docile (~> 1.1)
|
|
92
142
|
simplecov-html (~> 0.11)
|
|
93
143
|
simplecov_json_formatter (~> 0.1)
|
|
94
|
-
simplecov-html (0.
|
|
144
|
+
simplecov-html (0.13.2)
|
|
95
145
|
simplecov_json_formatter (0.1.4)
|
|
96
|
-
|
|
97
|
-
|
|
146
|
+
stringio (3.2.0)
|
|
147
|
+
thor (1.5.0)
|
|
148
|
+
timeout (0.6.1)
|
|
149
|
+
tsort (0.2.0)
|
|
150
|
+
tzinfo (2.0.6)
|
|
98
151
|
concurrent-ruby (~> 1.0)
|
|
99
|
-
|
|
152
|
+
uri (1.1.1)
|
|
153
|
+
useragent (0.16.11)
|
|
154
|
+
zeitwerk (2.7.5)
|
|
100
155
|
|
|
101
156
|
PLATFORMS
|
|
102
157
|
ruby
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# lol_dba [](https://github.com/plentz/lol_dba/actions) [](https://codeclimate.com/github/plentz/lol_dba/maintainability) [](https://codeclimate.com/github/plentz/lol_dba/test_coverage)
|
|
2
2
|
|
|
3
3
|
lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts.
|
|
4
4
|
|
|
@@ -41,7 +41,7 @@ Use it the same way you use other rake commands
|
|
|
41
41
|
|
|
42
42
|
### Compatibility
|
|
43
43
|
|
|
44
|
-
Compatible with Ruby 2.x and Rails 3.x, 4.x, 5.x, and
|
|
44
|
+
Compatible with Ruby 2.x, Ruby 3.x and Rails 3.x, 4.x, 5.x, 6.x, 7.x and 8.x.
|
|
45
45
|
|
|
46
46
|
### About primary_key
|
|
47
47
|
|
|
@@ -2,9 +2,9 @@ PATH
|
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
4
|
lol_dba (2.4.0)
|
|
5
|
-
actionpack
|
|
6
|
-
activerecord
|
|
7
|
-
railties
|
|
5
|
+
actionpack
|
|
6
|
+
activerecord
|
|
7
|
+
railties
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -35,8 +35,9 @@ GEM
|
|
|
35
35
|
rake
|
|
36
36
|
thor (>= 0.14.0)
|
|
37
37
|
arel (3.0.3)
|
|
38
|
+
bigdecimal (1.4.4)
|
|
38
39
|
builder (3.0.4)
|
|
39
|
-
concurrent-ruby (1.
|
|
40
|
+
concurrent-ruby (1.2.0)
|
|
40
41
|
diff-lcs (1.5.0)
|
|
41
42
|
docile (1.4.0)
|
|
42
43
|
erubis (2.7.0)
|
|
@@ -80,7 +81,7 @@ GEM
|
|
|
80
81
|
rspec-mocks (~> 3.9.0)
|
|
81
82
|
rspec-support (~> 3.9.0)
|
|
82
83
|
rspec-support (3.9.4)
|
|
83
|
-
simplecov (0.
|
|
84
|
+
simplecov (0.22.0)
|
|
84
85
|
docile (~> 1.1)
|
|
85
86
|
simplecov-html (~> 0.11)
|
|
86
87
|
simplecov_json_formatter (~> 0.1)
|
|
@@ -91,7 +92,7 @@ GEM
|
|
|
91
92
|
multi_json (~> 1.0)
|
|
92
93
|
rack (~> 1.0)
|
|
93
94
|
tilt (~> 1.1, != 1.3.0)
|
|
94
|
-
sqlite3 (1.
|
|
95
|
+
sqlite3 (1.3.13)
|
|
95
96
|
thor (1.2.1)
|
|
96
97
|
tilt (1.4.1)
|
|
97
98
|
tzinfo (0.3.61)
|
|
@@ -103,14 +104,12 @@ DEPENDENCIES
|
|
|
103
104
|
actionpack (~> 3.2.21)
|
|
104
105
|
activerecord (~> 3.2.21)
|
|
105
106
|
appraisal
|
|
107
|
+
bigdecimal (< 2)
|
|
106
108
|
lol_dba!
|
|
107
109
|
railties (~> 3.2.21)
|
|
108
110
|
rspec-rails
|
|
109
111
|
simplecov
|
|
110
|
-
sqlite3
|
|
111
|
-
|
|
112
|
-
RUBY VERSION
|
|
113
|
-
ruby 3.1.1p18
|
|
112
|
+
sqlite3 (< 1.4)
|
|
114
113
|
|
|
115
114
|
BUNDLED WITH
|
|
116
115
|
2.3.19
|
|
@@ -2,9 +2,9 @@ PATH
|
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
4
|
lol_dba (2.4.0)
|
|
5
|
-
actionpack
|
|
6
|
-
activerecord
|
|
7
|
-
railties
|
|
5
|
+
actionpack
|
|
6
|
+
activerecord
|
|
7
|
+
railties
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -35,8 +35,9 @@ GEM
|
|
|
35
35
|
rake
|
|
36
36
|
thor (>= 0.14.0)
|
|
37
37
|
arel (4.0.2)
|
|
38
|
+
bigdecimal (1.4.4)
|
|
38
39
|
builder (3.1.4)
|
|
39
|
-
concurrent-ruby (1.
|
|
40
|
+
concurrent-ruby (1.2.0)
|
|
40
41
|
diff-lcs (1.5.0)
|
|
41
42
|
docile (1.4.0)
|
|
42
43
|
erubis (2.7.0)
|
|
@@ -70,13 +71,13 @@ GEM
|
|
|
70
71
|
rspec-mocks (~> 3.9.0)
|
|
71
72
|
rspec-support (~> 3.9.0)
|
|
72
73
|
rspec-support (3.9.4)
|
|
73
|
-
simplecov (0.
|
|
74
|
+
simplecov (0.22.0)
|
|
74
75
|
docile (~> 1.1)
|
|
75
76
|
simplecov-html (~> 0.11)
|
|
76
77
|
simplecov_json_formatter (~> 0.1)
|
|
77
78
|
simplecov-html (0.12.3)
|
|
78
79
|
simplecov_json_formatter (0.1.4)
|
|
79
|
-
sqlite3 (1.
|
|
80
|
+
sqlite3 (1.3.13)
|
|
80
81
|
thor (1.2.1)
|
|
81
82
|
thread_safe (0.3.6)
|
|
82
83
|
tzinfo (0.3.61)
|
|
@@ -88,14 +89,12 @@ DEPENDENCIES
|
|
|
88
89
|
actionpack (~> 4.0.13)
|
|
89
90
|
activerecord (~> 4.0.13)
|
|
90
91
|
appraisal
|
|
92
|
+
bigdecimal (< 2)
|
|
91
93
|
lol_dba!
|
|
92
94
|
railties (~> 4.0.13)
|
|
93
95
|
rspec-rails
|
|
94
96
|
simplecov
|
|
95
|
-
sqlite3
|
|
96
|
-
|
|
97
|
-
RUBY VERSION
|
|
98
|
-
ruby 3.1.1p18
|
|
97
|
+
sqlite3 (< 1.4)
|
|
99
98
|
|
|
100
99
|
BUNDLED WITH
|
|
101
100
|
2.3.19
|
|
@@ -2,9 +2,9 @@ PATH
|
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
4
|
lol_dba (2.4.0)
|
|
5
|
-
actionpack
|
|
6
|
-
activerecord
|
|
7
|
-
railties
|
|
5
|
+
actionpack
|
|
6
|
+
activerecord
|
|
7
|
+
railties
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -36,15 +36,16 @@ GEM
|
|
|
36
36
|
rake
|
|
37
37
|
thor (>= 0.14.0)
|
|
38
38
|
arel (5.0.1.20140414130214)
|
|
39
|
+
bigdecimal (1.4.4)
|
|
39
40
|
builder (3.2.4)
|
|
40
|
-
concurrent-ruby (1.
|
|
41
|
+
concurrent-ruby (1.2.0)
|
|
41
42
|
diff-lcs (1.5.0)
|
|
42
43
|
docile (1.4.0)
|
|
43
44
|
erubis (2.7.0)
|
|
44
45
|
i18n (0.9.5)
|
|
45
46
|
concurrent-ruby (~> 1.0)
|
|
46
47
|
json (1.8.6)
|
|
47
|
-
minitest (5.
|
|
48
|
+
minitest (5.17.0)
|
|
48
49
|
rack (1.5.5)
|
|
49
50
|
rack-test (0.6.3)
|
|
50
51
|
rack (>= 1.0)
|
|
@@ -71,16 +72,16 @@ GEM
|
|
|
71
72
|
rspec-mocks (~> 3.9.0)
|
|
72
73
|
rspec-support (~> 3.9.0)
|
|
73
74
|
rspec-support (3.9.4)
|
|
74
|
-
simplecov (0.
|
|
75
|
+
simplecov (0.22.0)
|
|
75
76
|
docile (~> 1.1)
|
|
76
77
|
simplecov-html (~> 0.11)
|
|
77
78
|
simplecov_json_formatter (~> 0.1)
|
|
78
79
|
simplecov-html (0.12.3)
|
|
79
80
|
simplecov_json_formatter (0.1.4)
|
|
80
|
-
sqlite3 (1.
|
|
81
|
+
sqlite3 (1.3.13)
|
|
81
82
|
thor (1.2.1)
|
|
82
83
|
thread_safe (0.3.6)
|
|
83
|
-
tzinfo (1.2.
|
|
84
|
+
tzinfo (1.2.11)
|
|
84
85
|
thread_safe (~> 0.1)
|
|
85
86
|
|
|
86
87
|
PLATFORMS
|
|
@@ -90,14 +91,12 @@ DEPENDENCIES
|
|
|
90
91
|
actionpack (~> 4.1.9)
|
|
91
92
|
activerecord (~> 4.1.9)
|
|
92
93
|
appraisal
|
|
94
|
+
bigdecimal (< 2)
|
|
93
95
|
lol_dba!
|
|
94
96
|
railties (~> 4.1.9)
|
|
95
97
|
rspec-rails
|
|
96
98
|
simplecov
|
|
97
|
-
sqlite3
|
|
98
|
-
|
|
99
|
-
RUBY VERSION
|
|
100
|
-
ruby 3.1.1p18
|
|
99
|
+
sqlite3 (< 1.4)
|
|
101
100
|
|
|
102
101
|
BUNDLED WITH
|
|
103
102
|
2.3.19
|