lol_dba 2.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8dc3bb4ab130d6c90224e4111b93fbcd17236aaff71336105a382edafcda3dbe
4
- data.tar.gz: '03874aba90b0a948a4946260f7e0ae30bf6b31158681c2911cb465aabf7756b5'
3
+ metadata.gz: 880e03f62f7e7d8621eb06a192b08967efe4ef29ea4e7c0df184a52fedbad59b
4
+ data.tar.gz: a37e4086b4c3c29eb2ceaa793333153f4a84c6b53ab114e942181fe9bfd174cf
5
5
  SHA512:
6
- metadata.gz: 99f19246fad95946392eaf0ea372295f26eaf7f2751ad00195eb3941590ef39b2e1cea478ee0df9a1a7bc401ec80291dc8c07c67b1cc0d8b3550b876e314a01e
7
- data.tar.gz: 5bf31285cca0426fe305da7f41b9d030f11e43e60ceb7356b0e27730a226c78e4178115323c6637a0b7008430d1d32b18cd8423c1466bdd4e64c7b4c2899ed5e
6
+ metadata.gz: '08e4fc3b309a383dd528b02b081076f11cc3ccb51a789772744136fc09fcaf333132e511d2d0072cbed15bee21c0d244f87cafed1b3a2f0bd904def9589add4f'
7
+ data.tar.gz: 9934a22ad401e64e0332b51900d90a2bd58925b95586b68fe79a60f0a434bb7cae562f8cbd0a651d9713245e1084efddbe5a5076d91755c26bffba67ffcb2dea
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/" # Location of package manifests
5
+ schedule:
6
+ interval: "daily"
@@ -0,0 +1,33 @@
1
+ name: "build"
2
+ on:
3
+ push:
4
+ branches: [ "master" ]
5
+ pull_request:
6
+ branches: [ "master" ]
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ ruby-version: [2.7, "3.0", 3.1, 3.2]
14
+ continue-on-error: ${{ endsWith(matrix.ruby-version, 'head') }}
15
+ env:
16
+ RAILS_ENV: test
17
+ CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v3
21
+ - name: Install Ruby ${{ matrix.ruby-version }} and gems
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ bundler-cache: true
25
+ ruby-version: ${{ matrix.ruby-version }}
26
+ - name: Run tests
27
+ run: bundle exec appraisal install
28
+ - name: Run tests
29
+ run: bundle exec appraisal rake
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,65 +1,95 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'rails_3_2' do
4
- version = '~> 3.2.21'
5
- gem 'activerecord', version
6
- gem 'actionpack', version
7
- gem 'railties', version
8
- gem 'sqlite3', '< 1.4'
9
- end
3
+ if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3')
10
4
 
11
- appraise 'rails_4_0' do
12
- version = '~> 4.0.13'
13
- gem 'activerecord', version
14
- gem 'actionpack', version
15
- gem 'railties', version
16
- gem 'sqlite3', '< 1.4'
17
- 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
18
13
 
19
- appraise 'rails_4_1' do
20
- version = '~> 4.1.9'
21
- gem 'activerecord', version
22
- gem 'actionpack', version
23
- gem 'railties', version
24
- gem 'sqlite3', '< 1.4'
25
- 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
26
22
 
27
- appraise 'rails_4_2' do
28
- version = '~> 4.2.0'
29
- gem 'activerecord', version
30
- gem 'actionpack', version
31
- gem 'railties', version
32
- gem 'sqlite3', '< 1.4'
33
- 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
34
31
 
35
- appraise 'rails_5_0' do
36
- version = '~> 5.0.0'
37
- gem 'activerecord', version
38
- gem 'actionpack', version
39
- gem 'railties', version
40
- gem 'sqlite3', '< 1.4'
41
- 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
40
+
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
42
76
 
43
- appraise 'rails_5_1' do
44
- version = '~> 5.1.0'
45
- gem 'activerecord', version
46
- gem 'actionpack', version
47
- gem 'railties', version
48
- gem 'sqlite3', '< 1.4'
49
77
  end
50
78
 
51
- appraise 'rails_5_2' do
52
- version = '~> 5.2.0'
79
+ appraise 'rails_7' do
80
+ version = '~> 7.0'
53
81
  gem 'activerecord', version
54
82
  gem 'actionpack', version
55
83
  gem 'railties', version
56
- gem 'sqlite3', '< 1.4'
84
+ gem 'sqlite3'
85
+ gem 'bigdecimal'
57
86
  end
58
87
 
59
- appraise 'rails_6' do
60
- version = '~> 6.0'
88
+ appraise 'rails_8' do
89
+ version = '~> 8.0'
61
90
  gem 'activerecord', version
62
91
  gem 'actionpack', version
63
92
  gem 'railties', version
64
- gem 'sqlite3', '~> 1.4'
93
+ gem 'sqlite3'
94
+ gem 'bigdecimal'
65
95
  end
data/Gemfile.lock CHANGED
@@ -1,99 +1,157 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lol_dba (2.2.0)
5
- actionpack (>= 3.0, < 7.0)
6
- activerecord (>= 3.0, < 7.0)
7
- railties (>= 3.0, < 7.0)
4
+ lol_dba (3.0.0)
5
+ actionpack
6
+ activerecord
7
+ railties
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (6.0.2.2)
13
- actionview (= 6.0.2.2)
14
- activesupport (= 6.0.2.2)
15
- rack (~> 2.0, >= 2.0.8)
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.0)
18
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
- actionview (6.0.2.2)
20
- activesupport (= 6.0.2.2)
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.4)
23
- rails-dom-testing (~> 2.0)
24
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
- activemodel (6.0.2.2)
26
- activesupport (= 6.0.2.2)
27
- activerecord (6.0.2.2)
28
- activemodel (= 6.0.2.2)
29
- activesupport (= 6.0.2.2)
30
- activesupport (6.0.2.2)
31
- concurrent-ruby (~> 1.0, >= 1.0.2)
32
- i18n (>= 0.7, < 2)
33
- minitest (~> 5.1)
34
- tzinfo (~> 1.1)
35
- zeitwerk (~> 2.2)
36
- appraisal (2.2.0)
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
40
+ i18n (>= 1.6, < 2)
41
+ json
42
+ logger (>= 1.4.2)
43
+ minitest (>= 5.1)
44
+ securerandom (>= 0.3)
45
+ tzinfo (~> 2.0, >= 2.0.5)
46
+ uri (>= 0.13.1)
47
+ appraisal (2.5.0)
37
48
  bundler
38
49
  rake
39
50
  thor (>= 0.14.0)
40
- builder (3.2.4)
41
- concurrent-ruby (1.1.6)
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)
42
56
  crass (1.0.6)
43
- diff-lcs (1.3)
44
- docile (1.3.2)
45
- erubi (1.9.0)
46
- i18n (1.8.2)
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)
47
64
  concurrent-ruby (~> 1.0)
48
- loofah (2.4.0)
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)
49
74
  crass (~> 1.0.2)
50
- nokogiri (>= 1.5.9)
51
- method_source (1.0.0)
52
- mini_portile2 (2.4.0)
53
- minitest (5.14.0)
54
- nokogiri (1.10.9)
55
- mini_portile2 (~> 2.4.0)
56
- rack (2.2.2)
57
- rack-test (1.1.0)
58
- rack (>= 1.0, < 3)
59
- rails-dom-testing (2.0.3)
60
- activesupport (>= 4.2.0)
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)
82
+ racc (~> 1.4)
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)
96
+ rack (>= 1.3)
97
+ rackup (2.3.1)
98
+ rack (>= 3)
99
+ rails-dom-testing (2.3.0)
100
+ activesupport (>= 5.0.0)
101
+ minitest
61
102
  nokogiri (>= 1.6)
62
- rails-html-sanitizer (1.3.0)
63
- loofah (~> 2.3)
64
- railties (6.0.2.2)
65
- actionpack (= 6.0.2.2)
66
- activesupport (= 6.0.2.2)
67
- method_source
68
- rake (>= 0.8.7)
69
- thor (>= 0.20.3, < 2.0)
70
- rake (13.0.1)
71
- rspec-core (3.9.1)
72
- rspec-support (~> 3.9.1)
73
- rspec-expectations (3.9.1)
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)
111
+ rake (>= 12.2)
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)
74
125
  diff-lcs (>= 1.2.0, < 2.0)
75
- rspec-support (~> 3.9.0)
76
- rspec-mocks (3.9.1)
126
+ rspec-support (~> 3.13.0)
127
+ rspec-mocks (3.13.8)
77
128
  diff-lcs (>= 1.2.0, < 2.0)
78
- rspec-support (~> 3.9.0)
79
- rspec-rails (4.0.0)
80
- actionpack (>= 4.2)
81
- activesupport (>= 4.2)
82
- railties (>= 4.2)
83
- rspec-core (~> 3.9)
84
- rspec-expectations (~> 3.9)
85
- rspec-mocks (~> 3.9)
86
- rspec-support (~> 3.9)
87
- rspec-support (3.9.2)
88
- simplecov (0.18.5)
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)
89
141
  docile (~> 1.1)
90
142
  simplecov-html (~> 0.11)
91
- simplecov-html (0.12.2)
92
- thor (1.0.1)
93
- thread_safe (0.3.6)
94
- tzinfo (1.2.6)
95
- thread_safe (~> 0.1)
96
- zeitwerk (2.3.0)
143
+ simplecov_json_formatter (~> 0.1)
144
+ simplecov-html (0.13.2)
145
+ simplecov_json_formatter (0.1.4)
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)
151
+ concurrent-ruby (~> 1.0)
152
+ uri (1.1.1)
153
+ useragent (0.16.11)
154
+ zeitwerk (2.7.5)
97
155
 
98
156
  PLATFORMS
99
157
  ruby
@@ -105,4 +163,4 @@ DEPENDENCIES
105
163
  simplecov
106
164
 
107
165
  BUNDLED WITH
108
- 2.1.4
166
+ 2.3.19
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # lol_dba [![travis](https://api.travis-ci.org/plentz/lol_dba.svg?branch=master)](https://travis-ci.org/plentz/lol_dba) [![Maintainability](https://api.codeclimate.com/v1/badges/a5cc1172ec1291536904/maintainability)](https://codeclimate.com/github/plentz/lol_dba/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/a5cc1172ec1291536904/test_coverage)](https://codeclimate.com/github/plentz/lol_dba/test_coverage)
1
+ # lol_dba [![ci](https://github.com/plentz/lol_dba/actions/workflows/build.yml/badge.svg)](https://github.com/plentz/lol_dba/actions) [![Maintainability](https://api.codeclimate.com/v1/badges/a5cc1172ec1291536904/maintainability)](https://codeclimate.com/github/plentz/lol_dba/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/a5cc1172ec1291536904/test_coverage)](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 6.x.
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,10 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "sqlite3", "< 1.4"
6
5
  gem "activerecord", "~> 3.2.21"
7
6
  gem "actionpack", "~> 3.2.21"
8
7
  gem "railties", "~> 3.2.21"
8
+ gem "sqlite3", "< 1.4"
9
+ gem "bigdecimal", "< 2"
9
10
 
10
11
  gemspec path: "../"
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.2.0)
5
- actionpack (>= 3.0, < 7.0)
6
- activerecord (>= 3.0, < 7.0)
7
- railties (>= 3.0, < 7.0)
4
+ lol_dba (2.4.0)
5
+ actionpack
6
+ activerecord
7
+ railties
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -30,24 +30,25 @@ GEM
30
30
  activesupport (3.2.22.5)
31
31
  i18n (~> 0.6, >= 0.6.4)
32
32
  multi_json (~> 1.0)
33
- appraisal (2.2.0)
33
+ appraisal (2.4.1)
34
34
  bundler
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.1.6)
40
- diff-lcs (1.3)
41
- docile (1.3.2)
40
+ concurrent-ruby (1.2.0)
41
+ diff-lcs (1.5.0)
42
+ docile (1.4.0)
42
43
  erubis (2.7.0)
43
44
  hike (1.2.3)
44
45
  i18n (0.9.5)
45
46
  concurrent-ruby (~> 1.0)
46
47
  journey (1.0.4)
47
48
  json (1.8.6)
48
- multi_json (1.14.1)
49
+ multi_json (1.15.0)
49
50
  rack (1.4.7)
50
- rack-cache (1.11.0)
51
+ rack-cache (1.13.0)
51
52
  rack (>= 0.4)
52
53
  rack-ssl (1.3.4)
53
54
  rack
@@ -60,12 +61,12 @@ GEM
60
61
  rake (>= 0.8.7)
61
62
  rdoc (~> 3.4)
62
63
  thor (>= 0.14.6, < 2.0)
63
- rake (13.0.1)
64
+ rake (13.0.6)
64
65
  rdoc (3.12.2)
65
66
  json (~> 1.4)
66
- rspec-core (3.9.1)
67
- rspec-support (~> 3.9.1)
68
- rspec-expectations (3.9.1)
67
+ rspec-core (3.9.3)
68
+ rspec-support (~> 3.9.3)
69
+ rspec-expectations (3.9.4)
69
70
  diff-lcs (>= 1.2.0, < 2.0)
70
71
  rspec-support (~> 3.9.0)
71
72
  rspec-mocks (3.9.1)
@@ -79,20 +80,22 @@ GEM
79
80
  rspec-expectations (~> 3.9.0)
80
81
  rspec-mocks (~> 3.9.0)
81
82
  rspec-support (~> 3.9.0)
82
- rspec-support (3.9.2)
83
- simplecov (0.18.5)
83
+ rspec-support (3.9.4)
84
+ simplecov (0.22.0)
84
85
  docile (~> 1.1)
85
86
  simplecov-html (~> 0.11)
86
- simplecov-html (0.12.2)
87
+ simplecov_json_formatter (~> 0.1)
88
+ simplecov-html (0.12.3)
89
+ simplecov_json_formatter (0.1.4)
87
90
  sprockets (2.2.3)
88
91
  hike (~> 1.2)
89
92
  multi_json (~> 1.0)
90
93
  rack (~> 1.0)
91
94
  tilt (~> 1.1, != 1.3.0)
92
95
  sqlite3 (1.3.13)
93
- thor (1.0.1)
96
+ thor (1.2.1)
94
97
  tilt (1.4.1)
95
- tzinfo (0.3.56)
98
+ tzinfo (0.3.61)
96
99
 
97
100
  PLATFORMS
98
101
  ruby
@@ -101,6 +104,7 @@ DEPENDENCIES
101
104
  actionpack (~> 3.2.21)
102
105
  activerecord (~> 3.2.21)
103
106
  appraisal
107
+ bigdecimal (< 2)
104
108
  lol_dba!
105
109
  railties (~> 3.2.21)
106
110
  rspec-rails
@@ -108,4 +112,4 @@ DEPENDENCIES
108
112
  sqlite3 (< 1.4)
109
113
 
110
114
  BUNDLED WITH
111
- 2.1.4
115
+ 2.3.19
@@ -2,9 +2,10 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "sqlite3", "< 1.4"
6
5
  gem "activerecord", "~> 4.0.13"
7
6
  gem "actionpack", "~> 4.0.13"
8
7
  gem "railties", "~> 4.0.13"
8
+ gem "sqlite3", "< 1.4"
9
+ gem "bigdecimal", "< 2"
9
10
 
10
11
  gemspec path: "../"
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.2.0)
5
- actionpack (>= 3.0, < 7.0)
6
- activerecord (>= 3.0, < 7.0)
7
- railties (>= 3.0, < 7.0)
4
+ lol_dba (2.4.0)
5
+ actionpack
6
+ activerecord
7
+ railties
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -30,20 +30,21 @@ GEM
30
30
  multi_json (~> 1.3)
31
31
  thread_safe (~> 0.1)
32
32
  tzinfo (~> 0.3.37)
33
- appraisal (2.2.0)
33
+ appraisal (2.4.1)
34
34
  bundler
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.1.6)
40
- diff-lcs (1.3)
41
- docile (1.3.2)
40
+ concurrent-ruby (1.2.0)
41
+ diff-lcs (1.5.0)
42
+ docile (1.4.0)
42
43
  erubis (2.7.0)
43
44
  i18n (0.9.5)
44
45
  concurrent-ruby (~> 1.0)
45
46
  minitest (4.7.5)
46
- multi_json (1.14.1)
47
+ multi_json (1.15.0)
47
48
  rack (1.5.5)
48
49
  rack-test (0.6.3)
49
50
  rack (>= 1.0)
@@ -52,10 +53,10 @@ GEM
52
53
  activesupport (= 4.0.13)
53
54
  rake (>= 0.8.7)
54
55
  thor (>= 0.18.1, < 2.0)
55
- rake (13.0.1)
56
- rspec-core (3.9.1)
57
- rspec-support (~> 3.9.1)
58
- rspec-expectations (3.9.1)
56
+ rake (13.0.6)
57
+ rspec-core (3.9.3)
58
+ rspec-support (~> 3.9.3)
59
+ rspec-expectations (3.9.4)
59
60
  diff-lcs (>= 1.2.0, < 2.0)
60
61
  rspec-support (~> 3.9.0)
61
62
  rspec-mocks (3.9.1)
@@ -69,15 +70,17 @@ GEM
69
70
  rspec-expectations (~> 3.9.0)
70
71
  rspec-mocks (~> 3.9.0)
71
72
  rspec-support (~> 3.9.0)
72
- rspec-support (3.9.2)
73
- simplecov (0.18.5)
73
+ rspec-support (3.9.4)
74
+ simplecov (0.22.0)
74
75
  docile (~> 1.1)
75
76
  simplecov-html (~> 0.11)
76
- simplecov-html (0.12.2)
77
+ simplecov_json_formatter (~> 0.1)
78
+ simplecov-html (0.12.3)
79
+ simplecov_json_formatter (0.1.4)
77
80
  sqlite3 (1.3.13)
78
- thor (1.0.1)
81
+ thor (1.2.1)
79
82
  thread_safe (0.3.6)
80
- tzinfo (0.3.56)
83
+ tzinfo (0.3.61)
81
84
 
82
85
  PLATFORMS
83
86
  ruby
@@ -86,6 +89,7 @@ DEPENDENCIES
86
89
  actionpack (~> 4.0.13)
87
90
  activerecord (~> 4.0.13)
88
91
  appraisal
92
+ bigdecimal (< 2)
89
93
  lol_dba!
90
94
  railties (~> 4.0.13)
91
95
  rspec-rails
@@ -93,4 +97,4 @@ DEPENDENCIES
93
97
  sqlite3 (< 1.4)
94
98
 
95
99
  BUNDLED WITH
96
- 2.1.4
100
+ 2.3.19