lol_dba 2.2.0 → 2.4.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: 83fdd916e2f4fe2f42bf8836fb741d8a78dbf9c963e85ea0b4c0f809a8fa136a
4
+ data.tar.gz: eafbaa90371e5cb1d432ae5692fff183cfdb4a90bcc973f6afd32f64fbc82fbb
5
5
  SHA512:
6
- metadata.gz: 99f19246fad95946392eaf0ea372295f26eaf7f2751ad00195eb3941590ef39b2e1cea478ee0df9a1a7bc401ec80291dc8c07c67b1cc0d8b3550b876e314a01e
7
- data.tar.gz: 5bf31285cca0426fe305da7f41b9d030f11e43e60ceb7356b0e27730a226c78e4178115323c6637a0b7008430d1d32b18cd8423c1466bdd4e64c7b4c2899ed5e
6
+ metadata.gz: 4c42a963e6e04eb6f123bd9c07b57cff2b7fc8fa5cd8a96e51aacd2ef3d9d2935f20e22b6f2f5913ccfed72c42713754f83a262f9a876e37b2a40394300aa5e3
7
+ data.tar.gz: 837d9ef296f990d87498f6a4eab4621a3a0777ab4ab84c3b331e6e917ed5ef036063aed7367acaec4d529751d54cd781b878ee9b4b3792c92434dc239fdf77c4
@@ -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,29 @@
1
+ name: "Ruby on Rails CI"
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]
14
+ continue-on-error: ${{ endsWith(matrix.ruby-version, 'head') }}
15
+ env:
16
+ RAILS_ENV: test
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v3
20
+ - name: Install Ruby ${{ matrix.ruby-version }} and gems
21
+ uses: ruby/setup-ruby@8f312efe1262fb463d906e9bf040319394c18d3e # v1.92
22
+ with:
23
+ bundler-cache: true
24
+ ruby-version: ${{ matrix.ruby-version }}
25
+ - name: Run tests
26
+ run: bundle exec appraisal install
27
+ - name: Run tests
28
+ run: bundle exec appraisal rake
29
+
data/.travis.yml CHANGED
@@ -7,7 +7,7 @@ before_install:
7
7
  - gem update --system
8
8
  - gem install bundler
9
9
  rvm:
10
- - 2.7.0
10
+ - 2.6.5
11
11
  - ruby-head
12
12
  gemfile:
13
13
  - gemfiles/rails_3_2.gemfile
data/Appraisals CHANGED
@@ -6,6 +6,7 @@ appraise 'rails_3_2' do
6
6
  gem 'actionpack', version
7
7
  gem 'railties', version
8
8
  gem 'sqlite3', '< 1.4'
9
+ gem 'bigdecimal', '< 2'
9
10
  end
10
11
 
11
12
  appraise 'rails_4_0' do
@@ -14,6 +15,7 @@ appraise 'rails_4_0' do
14
15
  gem 'actionpack', version
15
16
  gem 'railties', version
16
17
  gem 'sqlite3', '< 1.4'
18
+ gem 'bigdecimal', '< 2'
17
19
  end
18
20
 
19
21
  appraise 'rails_4_1' do
@@ -22,6 +24,7 @@ appraise 'rails_4_1' do
22
24
  gem 'actionpack', version
23
25
  gem 'railties', version
24
26
  gem 'sqlite3', '< 1.4'
27
+ gem 'bigdecimal', '< 2'
25
28
  end
26
29
 
27
30
  appraise 'rails_4_2' do
@@ -30,6 +33,7 @@ appraise 'rails_4_2' do
30
33
  gem 'actionpack', version
31
34
  gem 'railties', version
32
35
  gem 'sqlite3', '< 1.4'
36
+ gem 'bigdecimal', '< 2'
33
37
  end
34
38
 
35
39
  appraise 'rails_5_0' do
@@ -38,6 +42,7 @@ appraise 'rails_5_0' do
38
42
  gem 'actionpack', version
39
43
  gem 'railties', version
40
44
  gem 'sqlite3', '< 1.4'
45
+ gem 'bigdecimal', '< 2'
41
46
  end
42
47
 
43
48
  appraise 'rails_5_1' do
@@ -46,6 +51,7 @@ appraise 'rails_5_1' do
46
51
  gem 'actionpack', version
47
52
  gem 'railties', version
48
53
  gem 'sqlite3', '< 1.4'
54
+ gem 'bigdecimal', '< 2'
49
55
  end
50
56
 
51
57
  appraise 'rails_5_2' do
@@ -54,6 +60,7 @@ appraise 'rails_5_2' do
54
60
  gem 'actionpack', version
55
61
  gem 'railties', version
56
62
  gem 'sqlite3', '< 1.4'
63
+ gem 'bigdecimal', '< 2'
57
64
  end
58
65
 
59
66
  appraise 'rails_6' do
@@ -62,4 +69,14 @@ appraise 'rails_6' do
62
69
  gem 'actionpack', version
63
70
  gem 'railties', version
64
71
  gem 'sqlite3', '~> 1.4'
72
+ gem 'bigdecimal', '< 2'
73
+ end
74
+
75
+ appraise 'rails_7' do
76
+ version = '~> 7.0'
77
+ gem 'activerecord', version
78
+ gem 'actionpack', version
79
+ gem 'railties', version
80
+ gem 'sqlite3'
81
+ gem 'bigdecimal'
65
82
  end
data/Gemfile.lock CHANGED
@@ -1,99 +1,102 @@
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/
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 (7.0.3.1)
13
+ actionview (= 7.0.3.1)
14
+ activesupport (= 7.0.3.1)
15
+ rack (~> 2.0, >= 2.2.0)
16
16
  rack-test (>= 0.6.3)
17
17
  rails-dom-testing (~> 2.0)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
- actionview (6.0.2.2)
20
- activesupport (= 6.0.2.2)
19
+ actionview (7.0.3.1)
20
+ activesupport (= 7.0.3.1)
21
21
  builder (~> 3.1)
22
22
  erubi (~> 1.4)
23
23
  rails-dom-testing (~> 2.0)
24
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)
25
+ activemodel (7.0.3.1)
26
+ activesupport (= 7.0.3.1)
27
+ activerecord (7.0.3.1)
28
+ activemodel (= 7.0.3.1)
29
+ activesupport (= 7.0.3.1)
30
+ activesupport (7.0.3.1)
31
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)
32
+ i18n (>= 1.6, < 2)
33
+ minitest (>= 5.1)
34
+ tzinfo (~> 2.0)
35
+ appraisal (2.4.1)
37
36
  bundler
38
37
  rake
39
38
  thor (>= 0.14.0)
40
39
  builder (3.2.4)
41
- concurrent-ruby (1.1.6)
40
+ concurrent-ruby (1.1.10)
42
41
  crass (1.0.6)
43
- diff-lcs (1.3)
44
- docile (1.3.2)
45
- erubi (1.9.0)
46
- i18n (1.8.2)
42
+ diff-lcs (1.5.0)
43
+ docile (1.4.0)
44
+ erubi (1.11.0)
45
+ i18n (1.12.0)
47
46
  concurrent-ruby (~> 1.0)
48
- loofah (2.4.0)
47
+ loofah (2.18.0)
49
48
  crass (~> 1.0.2)
50
49
  nokogiri (>= 1.5.9)
51
50
  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)
51
+ mini_portile2 (2.8.0)
52
+ minitest (5.16.2)
53
+ nokogiri (1.13.8)
54
+ mini_portile2 (~> 2.8.0)
55
+ racc (~> 1.4)
56
+ racc (1.6.0)
57
+ rack (2.2.4)
58
+ rack-test (2.0.2)
59
+ rack (>= 1.3)
59
60
  rails-dom-testing (2.0.3)
60
61
  activesupport (>= 4.2.0)
61
62
  nokogiri (>= 1.6)
62
- rails-html-sanitizer (1.3.0)
63
+ rails-html-sanitizer (1.4.3)
63
64
  loofah (~> 2.3)
64
- railties (6.0.2.2)
65
- actionpack (= 6.0.2.2)
66
- activesupport (= 6.0.2.2)
65
+ railties (7.0.3.1)
66
+ actionpack (= 7.0.3.1)
67
+ activesupport (= 7.0.3.1)
67
68
  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)
69
+ rake (>= 12.2)
70
+ thor (~> 1.0)
71
+ zeitwerk (~> 2.5)
72
+ rake (13.0.6)
73
+ rspec-core (3.11.0)
74
+ rspec-support (~> 3.11.0)
75
+ rspec-expectations (3.11.0)
74
76
  diff-lcs (>= 1.2.0, < 2.0)
75
- rspec-support (~> 3.9.0)
76
- rspec-mocks (3.9.1)
77
+ rspec-support (~> 3.11.0)
78
+ rspec-mocks (3.11.1)
77
79
  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)
80
+ rspec-support (~> 3.11.0)
81
+ rspec-rails (5.1.2)
82
+ actionpack (>= 5.2)
83
+ activesupport (>= 5.2)
84
+ railties (>= 5.2)
85
+ rspec-core (~> 3.10)
86
+ rspec-expectations (~> 3.10)
87
+ rspec-mocks (~> 3.10)
88
+ rspec-support (~> 3.10)
89
+ rspec-support (3.11.0)
90
+ simplecov (0.21.2)
89
91
  docile (~> 1.1)
90
92
  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)
93
+ simplecov_json_formatter (~> 0.1)
94
+ simplecov-html (0.12.3)
95
+ simplecov_json_formatter (0.1.4)
96
+ thor (1.2.1)
97
+ tzinfo (2.0.5)
98
+ concurrent-ruby (~> 1.0)
99
+ zeitwerk (2.6.0)
97
100
 
98
101
  PLATFORMS
99
102
  ruby
@@ -105,4 +108,4 @@ DEPENDENCIES
105
108
  simplecov
106
109
 
107
110
  BUNDLED WITH
108
- 2.1.4
111
+ 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", "~> 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,9 +1,9 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.2.0)
4
+ lol_dba (2.4.0)
5
5
  actionpack (>= 3.0, < 7.0)
6
- activerecord (>= 3.0, < 7.0)
6
+ activerecord (>= 3.0, < 8.0)
7
7
  railties (>= 3.0, < 7.0)
8
8
 
9
9
  GEM
@@ -30,24 +30,24 @@ 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
38
  builder (3.0.4)
39
- concurrent-ruby (1.1.6)
40
- diff-lcs (1.3)
41
- docile (1.3.2)
39
+ concurrent-ruby (1.1.10)
40
+ diff-lcs (1.5.0)
41
+ docile (1.4.0)
42
42
  erubis (2.7.0)
43
43
  hike (1.2.3)
44
44
  i18n (0.9.5)
45
45
  concurrent-ruby (~> 1.0)
46
46
  journey (1.0.4)
47
47
  json (1.8.6)
48
- multi_json (1.14.1)
48
+ multi_json (1.15.0)
49
49
  rack (1.4.7)
50
- rack-cache (1.11.0)
50
+ rack-cache (1.13.0)
51
51
  rack (>= 0.4)
52
52
  rack-ssl (1.3.4)
53
53
  rack
@@ -60,12 +60,12 @@ GEM
60
60
  rake (>= 0.8.7)
61
61
  rdoc (~> 3.4)
62
62
  thor (>= 0.14.6, < 2.0)
63
- rake (13.0.1)
63
+ rake (13.0.6)
64
64
  rdoc (3.12.2)
65
65
  json (~> 1.4)
66
- rspec-core (3.9.1)
67
- rspec-support (~> 3.9.1)
68
- rspec-expectations (3.9.1)
66
+ rspec-core (3.9.3)
67
+ rspec-support (~> 3.9.3)
68
+ rspec-expectations (3.9.4)
69
69
  diff-lcs (>= 1.2.0, < 2.0)
70
70
  rspec-support (~> 3.9.0)
71
71
  rspec-mocks (3.9.1)
@@ -79,20 +79,22 @@ GEM
79
79
  rspec-expectations (~> 3.9.0)
80
80
  rspec-mocks (~> 3.9.0)
81
81
  rspec-support (~> 3.9.0)
82
- rspec-support (3.9.2)
83
- simplecov (0.18.5)
82
+ rspec-support (3.9.4)
83
+ simplecov (0.21.2)
84
84
  docile (~> 1.1)
85
85
  simplecov-html (~> 0.11)
86
- simplecov-html (0.12.2)
86
+ simplecov_json_formatter (~> 0.1)
87
+ simplecov-html (0.12.3)
88
+ simplecov_json_formatter (0.1.4)
87
89
  sprockets (2.2.3)
88
90
  hike (~> 1.2)
89
91
  multi_json (~> 1.0)
90
92
  rack (~> 1.0)
91
93
  tilt (~> 1.1, != 1.3.0)
92
- sqlite3 (1.3.13)
93
- thor (1.0.1)
94
+ sqlite3 (1.4.4)
95
+ thor (1.2.1)
94
96
  tilt (1.4.1)
95
- tzinfo (0.3.56)
97
+ tzinfo (0.3.61)
96
98
 
97
99
  PLATFORMS
98
100
  ruby
@@ -105,7 +107,10 @@ DEPENDENCIES
105
107
  railties (~> 3.2.21)
106
108
  rspec-rails
107
109
  simplecov
108
- sqlite3 (< 1.4)
110
+ sqlite3
111
+
112
+ RUBY VERSION
113
+ ruby 3.1.1p18
109
114
 
110
115
  BUNDLED WITH
111
- 2.1.4
116
+ 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,9 +1,9 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.2.0)
4
+ lol_dba (2.4.0)
5
5
  actionpack (>= 3.0, < 7.0)
6
- activerecord (>= 3.0, < 7.0)
6
+ activerecord (>= 3.0, < 8.0)
7
7
  railties (>= 3.0, < 7.0)
8
8
 
9
9
  GEM
@@ -30,20 +30,20 @@ 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
38
  builder (3.1.4)
39
- concurrent-ruby (1.1.6)
40
- diff-lcs (1.3)
41
- docile (1.3.2)
39
+ concurrent-ruby (1.1.10)
40
+ diff-lcs (1.5.0)
41
+ docile (1.4.0)
42
42
  erubis (2.7.0)
43
43
  i18n (0.9.5)
44
44
  concurrent-ruby (~> 1.0)
45
45
  minitest (4.7.5)
46
- multi_json (1.14.1)
46
+ multi_json (1.15.0)
47
47
  rack (1.5.5)
48
48
  rack-test (0.6.3)
49
49
  rack (>= 1.0)
@@ -52,10 +52,10 @@ GEM
52
52
  activesupport (= 4.0.13)
53
53
  rake (>= 0.8.7)
54
54
  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)
55
+ rake (13.0.6)
56
+ rspec-core (3.9.3)
57
+ rspec-support (~> 3.9.3)
58
+ rspec-expectations (3.9.4)
59
59
  diff-lcs (>= 1.2.0, < 2.0)
60
60
  rspec-support (~> 3.9.0)
61
61
  rspec-mocks (3.9.1)
@@ -69,15 +69,17 @@ GEM
69
69
  rspec-expectations (~> 3.9.0)
70
70
  rspec-mocks (~> 3.9.0)
71
71
  rspec-support (~> 3.9.0)
72
- rspec-support (3.9.2)
73
- simplecov (0.18.5)
72
+ rspec-support (3.9.4)
73
+ simplecov (0.21.2)
74
74
  docile (~> 1.1)
75
75
  simplecov-html (~> 0.11)
76
- simplecov-html (0.12.2)
77
- sqlite3 (1.3.13)
78
- thor (1.0.1)
76
+ simplecov_json_formatter (~> 0.1)
77
+ simplecov-html (0.12.3)
78
+ simplecov_json_formatter (0.1.4)
79
+ sqlite3 (1.4.4)
80
+ thor (1.2.1)
79
81
  thread_safe (0.3.6)
80
- tzinfo (0.3.56)
82
+ tzinfo (0.3.61)
81
83
 
82
84
  PLATFORMS
83
85
  ruby
@@ -90,7 +92,10 @@ DEPENDENCIES
90
92
  railties (~> 4.0.13)
91
93
  rspec-rails
92
94
  simplecov
93
- sqlite3 (< 1.4)
95
+ sqlite3
96
+
97
+ RUBY VERSION
98
+ ruby 3.1.1p18
94
99
 
95
100
  BUNDLED WITH
96
- 2.1.4
101
+ 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.1.9"
7
6
  gem "actionpack", "~> 4.1.9"
8
7
  gem "railties", "~> 4.1.9"
8
+ gem "sqlite3", "< 1.4"
9
+ gem "bigdecimal", "< 2"
9
10
 
10
11
  gemspec path: "../"
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lol_dba (2.2.0)
4
+ lol_dba (2.4.0)
5
5
  actionpack (>= 3.0, < 7.0)
6
- activerecord (>= 3.0, < 7.0)
6
+ activerecord (>= 3.0, < 8.0)
7
7
  railties (>= 3.0, < 7.0)
8
8
 
9
9
  GEM
@@ -31,20 +31,20 @@ GEM
31
31
  minitest (~> 5.1)
32
32
  thread_safe (~> 0.1)
33
33
  tzinfo (~> 1.1)
34
- appraisal (2.2.0)
34
+ appraisal (2.4.1)
35
35
  bundler
36
36
  rake
37
37
  thor (>= 0.14.0)
38
38
  arel (5.0.1.20140414130214)
39
39
  builder (3.2.4)
40
- concurrent-ruby (1.1.6)
41
- diff-lcs (1.3)
42
- docile (1.3.2)
40
+ concurrent-ruby (1.1.10)
41
+ diff-lcs (1.5.0)
42
+ docile (1.4.0)
43
43
  erubis (2.7.0)
44
44
  i18n (0.9.5)
45
45
  concurrent-ruby (~> 1.0)
46
46
  json (1.8.6)
47
- minitest (5.14.0)
47
+ minitest (5.16.2)
48
48
  rack (1.5.5)
49
49
  rack-test (0.6.3)
50
50
  rack (>= 1.0)
@@ -53,10 +53,10 @@ GEM
53
53
  activesupport (= 4.1.16)
54
54
  rake (>= 0.8.7)
55
55
  thor (>= 0.18.1, < 2.0)
56
- rake (13.0.1)
57
- rspec-core (3.9.1)
58
- rspec-support (~> 3.9.1)
59
- 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)
60
60
  diff-lcs (>= 1.2.0, < 2.0)
61
61
  rspec-support (~> 3.9.0)
62
62
  rspec-mocks (3.9.1)
@@ -70,15 +70,17 @@ GEM
70
70
  rspec-expectations (~> 3.9.0)
71
71
  rspec-mocks (~> 3.9.0)
72
72
  rspec-support (~> 3.9.0)
73
- rspec-support (3.9.2)
74
- simplecov (0.18.5)
73
+ rspec-support (3.9.4)
74
+ simplecov (0.21.2)
75
75
  docile (~> 1.1)
76
76
  simplecov-html (~> 0.11)
77
- simplecov-html (0.12.2)
78
- sqlite3 (1.3.13)
79
- thor (1.0.1)
77
+ simplecov_json_formatter (~> 0.1)
78
+ simplecov-html (0.12.3)
79
+ simplecov_json_formatter (0.1.4)
80
+ sqlite3 (1.4.4)
81
+ thor (1.2.1)
80
82
  thread_safe (0.3.6)
81
- tzinfo (1.2.6)
83
+ tzinfo (1.2.10)
82
84
  thread_safe (~> 0.1)
83
85
 
84
86
  PLATFORMS
@@ -92,7 +94,10 @@ DEPENDENCIES
92
94
  railties (~> 4.1.9)
93
95
  rspec-rails
94
96
  simplecov
95
- sqlite3 (< 1.4)
97
+ sqlite3
98
+
99
+ RUBY VERSION
100
+ ruby 3.1.1p18
96
101
 
97
102
  BUNDLED WITH
98
- 2.1.4
103
+ 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.2.0"
7
6
  gem "actionpack", "~> 4.2.0"
8
7
  gem "railties", "~> 4.2.0"
8
+ gem "sqlite3", "< 1.4"
9
+ gem "bigdecimal", "< 2"
9
10
 
10
11
  gemspec path: "../"