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
|
@@ -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/
|
|
@@ -39,23 +39,24 @@ GEM
|
|
|
39
39
|
rake
|
|
40
40
|
thor (>= 0.14.0)
|
|
41
41
|
arel (6.0.4)
|
|
42
|
+
bigdecimal (1.4.4)
|
|
42
43
|
builder (3.2.4)
|
|
43
|
-
concurrent-ruby (1.
|
|
44
|
+
concurrent-ruby (1.2.0)
|
|
44
45
|
crass (1.0.6)
|
|
45
46
|
diff-lcs (1.5.0)
|
|
46
47
|
docile (1.4.0)
|
|
47
48
|
erubis (2.7.0)
|
|
48
49
|
i18n (0.9.5)
|
|
49
50
|
concurrent-ruby (~> 1.0)
|
|
50
|
-
loofah (2.
|
|
51
|
+
loofah (2.19.1)
|
|
51
52
|
crass (~> 1.0.2)
|
|
52
53
|
nokogiri (>= 1.5.9)
|
|
53
|
-
mini_portile2 (2.8.
|
|
54
|
-
minitest (5.
|
|
55
|
-
nokogiri (1.
|
|
54
|
+
mini_portile2 (2.8.1)
|
|
55
|
+
minitest (5.17.0)
|
|
56
|
+
nokogiri (1.14.1)
|
|
56
57
|
mini_portile2 (~> 2.8.0)
|
|
57
58
|
racc (~> 1.4)
|
|
58
|
-
racc (1.6.
|
|
59
|
+
racc (1.6.2)
|
|
59
60
|
rack (1.6.13)
|
|
60
61
|
rack-test (0.6.3)
|
|
61
62
|
rack (>= 1.0)
|
|
@@ -65,22 +66,22 @@ GEM
|
|
|
65
66
|
activesupport (>= 4.2.0, < 5.0)
|
|
66
67
|
nokogiri (~> 1.6)
|
|
67
68
|
rails-deprecated_sanitizer (>= 1.0.1)
|
|
68
|
-
rails-html-sanitizer (1.
|
|
69
|
-
loofah (~> 2.
|
|
69
|
+
rails-html-sanitizer (1.5.0)
|
|
70
|
+
loofah (~> 2.19, >= 2.19.1)
|
|
70
71
|
railties (4.2.11.3)
|
|
71
72
|
actionpack (= 4.2.11.3)
|
|
72
73
|
activesupport (= 4.2.11.3)
|
|
73
74
|
rake (>= 0.8.7)
|
|
74
75
|
thor (>= 0.18.1, < 2.0)
|
|
75
76
|
rake (13.0.6)
|
|
76
|
-
rspec-core (3.
|
|
77
|
-
rspec-support (~> 3.
|
|
78
|
-
rspec-expectations (3.
|
|
77
|
+
rspec-core (3.12.1)
|
|
78
|
+
rspec-support (~> 3.12.0)
|
|
79
|
+
rspec-expectations (3.12.2)
|
|
79
80
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
80
|
-
rspec-support (~> 3.
|
|
81
|
-
rspec-mocks (3.
|
|
81
|
+
rspec-support (~> 3.12.0)
|
|
82
|
+
rspec-mocks (3.12.3)
|
|
82
83
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
83
|
-
rspec-support (~> 3.
|
|
84
|
+
rspec-support (~> 3.12.0)
|
|
84
85
|
rspec-rails (4.1.2)
|
|
85
86
|
actionpack (>= 4.2)
|
|
86
87
|
activesupport (>= 4.2)
|
|
@@ -89,17 +90,17 @@ GEM
|
|
|
89
90
|
rspec-expectations (~> 3.10)
|
|
90
91
|
rspec-mocks (~> 3.10)
|
|
91
92
|
rspec-support (~> 3.10)
|
|
92
|
-
rspec-support (3.
|
|
93
|
-
simplecov (0.
|
|
93
|
+
rspec-support (3.12.0)
|
|
94
|
+
simplecov (0.22.0)
|
|
94
95
|
docile (~> 1.1)
|
|
95
96
|
simplecov-html (~> 0.11)
|
|
96
97
|
simplecov_json_formatter (~> 0.1)
|
|
97
98
|
simplecov-html (0.12.3)
|
|
98
99
|
simplecov_json_formatter (0.1.4)
|
|
99
|
-
sqlite3 (1.
|
|
100
|
+
sqlite3 (1.3.13)
|
|
100
101
|
thor (1.2.1)
|
|
101
102
|
thread_safe (0.3.6)
|
|
102
|
-
tzinfo (1.2.
|
|
103
|
+
tzinfo (1.2.11)
|
|
103
104
|
thread_safe (~> 0.1)
|
|
104
105
|
|
|
105
106
|
PLATFORMS
|
|
@@ -109,14 +110,12 @@ DEPENDENCIES
|
|
|
109
110
|
actionpack (~> 4.2.0)
|
|
110
111
|
activerecord (~> 4.2.0)
|
|
111
112
|
appraisal
|
|
113
|
+
bigdecimal (< 2)
|
|
112
114
|
lol_dba!
|
|
113
115
|
railties (~> 4.2.0)
|
|
114
116
|
rspec-rails
|
|
115
117
|
simplecov
|
|
116
|
-
sqlite3
|
|
117
|
-
|
|
118
|
-
RUBY VERSION
|
|
119
|
-
ruby 3.1.1p18
|
|
118
|
+
sqlite3 (< 1.4)
|
|
120
119
|
|
|
121
120
|
BUNDLED WITH
|
|
122
121
|
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/
|
|
@@ -38,32 +38,33 @@ GEM
|
|
|
38
38
|
rake
|
|
39
39
|
thor (>= 0.14.0)
|
|
40
40
|
arel (7.1.4)
|
|
41
|
+
bigdecimal (1.4.4)
|
|
41
42
|
builder (3.2.4)
|
|
42
|
-
concurrent-ruby (1.
|
|
43
|
+
concurrent-ruby (1.2.0)
|
|
43
44
|
crass (1.0.6)
|
|
44
45
|
diff-lcs (1.5.0)
|
|
45
46
|
docile (1.4.0)
|
|
46
47
|
erubis (2.7.0)
|
|
47
48
|
i18n (1.12.0)
|
|
48
49
|
concurrent-ruby (~> 1.0)
|
|
49
|
-
loofah (2.
|
|
50
|
+
loofah (2.19.1)
|
|
50
51
|
crass (~> 1.0.2)
|
|
51
52
|
nokogiri (>= 1.5.9)
|
|
52
53
|
method_source (1.0.0)
|
|
53
|
-
mini_portile2 (2.8.
|
|
54
|
-
minitest (5.
|
|
55
|
-
nokogiri (1.
|
|
54
|
+
mini_portile2 (2.8.1)
|
|
55
|
+
minitest (5.17.0)
|
|
56
|
+
nokogiri (1.14.1)
|
|
56
57
|
mini_portile2 (~> 2.8.0)
|
|
57
58
|
racc (~> 1.4)
|
|
58
|
-
racc (1.6.
|
|
59
|
-
rack (2.2.
|
|
59
|
+
racc (1.6.2)
|
|
60
|
+
rack (2.2.6.2)
|
|
60
61
|
rack-test (0.6.3)
|
|
61
62
|
rack (>= 1.0)
|
|
62
63
|
rails-dom-testing (2.0.3)
|
|
63
64
|
activesupport (>= 4.2.0)
|
|
64
65
|
nokogiri (>= 1.6)
|
|
65
|
-
rails-html-sanitizer (1.
|
|
66
|
-
loofah (~> 2.
|
|
66
|
+
rails-html-sanitizer (1.5.0)
|
|
67
|
+
loofah (~> 2.19, >= 2.19.1)
|
|
67
68
|
railties (5.0.7.2)
|
|
68
69
|
actionpack (= 5.0.7.2)
|
|
69
70
|
activesupport (= 5.0.7.2)
|
|
@@ -71,14 +72,14 @@ GEM
|
|
|
71
72
|
rake (>= 0.8.7)
|
|
72
73
|
thor (>= 0.18.1, < 2.0)
|
|
73
74
|
rake (13.0.6)
|
|
74
|
-
rspec-core (3.
|
|
75
|
-
rspec-support (~> 3.
|
|
76
|
-
rspec-expectations (3.
|
|
75
|
+
rspec-core (3.12.1)
|
|
76
|
+
rspec-support (~> 3.12.0)
|
|
77
|
+
rspec-expectations (3.12.2)
|
|
77
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
78
|
-
rspec-support (~> 3.
|
|
79
|
-
rspec-mocks (3.
|
|
79
|
+
rspec-support (~> 3.12.0)
|
|
80
|
+
rspec-mocks (3.12.3)
|
|
80
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
81
|
-
rspec-support (~> 3.
|
|
82
|
+
rspec-support (~> 3.12.0)
|
|
82
83
|
rspec-rails (4.1.2)
|
|
83
84
|
actionpack (>= 4.2)
|
|
84
85
|
activesupport (>= 4.2)
|
|
@@ -87,17 +88,17 @@ GEM
|
|
|
87
88
|
rspec-expectations (~> 3.10)
|
|
88
89
|
rspec-mocks (~> 3.10)
|
|
89
90
|
rspec-support (~> 3.10)
|
|
90
|
-
rspec-support (3.
|
|
91
|
-
simplecov (0.
|
|
91
|
+
rspec-support (3.12.0)
|
|
92
|
+
simplecov (0.22.0)
|
|
92
93
|
docile (~> 1.1)
|
|
93
94
|
simplecov-html (~> 0.11)
|
|
94
95
|
simplecov_json_formatter (~> 0.1)
|
|
95
96
|
simplecov-html (0.12.3)
|
|
96
97
|
simplecov_json_formatter (0.1.4)
|
|
97
|
-
sqlite3 (1.
|
|
98
|
+
sqlite3 (1.3.13)
|
|
98
99
|
thor (1.2.1)
|
|
99
100
|
thread_safe (0.3.6)
|
|
100
|
-
tzinfo (1.2.
|
|
101
|
+
tzinfo (1.2.11)
|
|
101
102
|
thread_safe (~> 0.1)
|
|
102
103
|
|
|
103
104
|
PLATFORMS
|
|
@@ -107,14 +108,12 @@ DEPENDENCIES
|
|
|
107
108
|
actionpack (~> 5.0.0)
|
|
108
109
|
activerecord (~> 5.0.0)
|
|
109
110
|
appraisal
|
|
111
|
+
bigdecimal (< 2)
|
|
110
112
|
lol_dba!
|
|
111
113
|
railties (~> 5.0.0)
|
|
112
114
|
rspec-rails
|
|
113
115
|
simplecov
|
|
114
|
-
sqlite3
|
|
115
|
-
|
|
116
|
-
RUBY VERSION
|
|
117
|
-
ruby 3.1.1p18
|
|
116
|
+
sqlite3 (< 1.4)
|
|
118
117
|
|
|
119
118
|
BUNDLED WITH
|
|
120
119
|
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/
|
|
@@ -38,32 +38,33 @@ GEM
|
|
|
38
38
|
rake
|
|
39
39
|
thor (>= 0.14.0)
|
|
40
40
|
arel (8.0.0)
|
|
41
|
+
bigdecimal (1.4.4)
|
|
41
42
|
builder (3.2.4)
|
|
42
|
-
concurrent-ruby (1.
|
|
43
|
+
concurrent-ruby (1.2.0)
|
|
43
44
|
crass (1.0.6)
|
|
44
45
|
diff-lcs (1.5.0)
|
|
45
46
|
docile (1.4.0)
|
|
46
|
-
erubi (1.
|
|
47
|
+
erubi (1.12.0)
|
|
47
48
|
i18n (1.12.0)
|
|
48
49
|
concurrent-ruby (~> 1.0)
|
|
49
|
-
loofah (2.
|
|
50
|
+
loofah (2.19.1)
|
|
50
51
|
crass (~> 1.0.2)
|
|
51
52
|
nokogiri (>= 1.5.9)
|
|
52
53
|
method_source (1.0.0)
|
|
53
|
-
mini_portile2 (2.8.
|
|
54
|
-
minitest (5.
|
|
55
|
-
nokogiri (1.
|
|
54
|
+
mini_portile2 (2.8.1)
|
|
55
|
+
minitest (5.17.0)
|
|
56
|
+
nokogiri (1.14.1)
|
|
56
57
|
mini_portile2 (~> 2.8.0)
|
|
57
58
|
racc (~> 1.4)
|
|
58
|
-
racc (1.6.
|
|
59
|
-
rack (2.2.
|
|
59
|
+
racc (1.6.2)
|
|
60
|
+
rack (2.2.6.2)
|
|
60
61
|
rack-test (2.0.2)
|
|
61
62
|
rack (>= 1.3)
|
|
62
63
|
rails-dom-testing (2.0.3)
|
|
63
64
|
activesupport (>= 4.2.0)
|
|
64
65
|
nokogiri (>= 1.6)
|
|
65
|
-
rails-html-sanitizer (1.
|
|
66
|
-
loofah (~> 2.
|
|
66
|
+
rails-html-sanitizer (1.5.0)
|
|
67
|
+
loofah (~> 2.19, >= 2.19.1)
|
|
67
68
|
railties (5.1.7)
|
|
68
69
|
actionpack (= 5.1.7)
|
|
69
70
|
activesupport (= 5.1.7)
|
|
@@ -71,14 +72,14 @@ GEM
|
|
|
71
72
|
rake (>= 0.8.7)
|
|
72
73
|
thor (>= 0.18.1, < 2.0)
|
|
73
74
|
rake (13.0.6)
|
|
74
|
-
rspec-core (3.
|
|
75
|
-
rspec-support (~> 3.
|
|
76
|
-
rspec-expectations (3.
|
|
75
|
+
rspec-core (3.12.1)
|
|
76
|
+
rspec-support (~> 3.12.0)
|
|
77
|
+
rspec-expectations (3.12.2)
|
|
77
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
78
|
-
rspec-support (~> 3.
|
|
79
|
-
rspec-mocks (3.
|
|
79
|
+
rspec-support (~> 3.12.0)
|
|
80
|
+
rspec-mocks (3.12.3)
|
|
80
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
81
|
-
rspec-support (~> 3.
|
|
82
|
+
rspec-support (~> 3.12.0)
|
|
82
83
|
rspec-rails (4.1.2)
|
|
83
84
|
actionpack (>= 4.2)
|
|
84
85
|
activesupport (>= 4.2)
|
|
@@ -87,17 +88,17 @@ GEM
|
|
|
87
88
|
rspec-expectations (~> 3.10)
|
|
88
89
|
rspec-mocks (~> 3.10)
|
|
89
90
|
rspec-support (~> 3.10)
|
|
90
|
-
rspec-support (3.
|
|
91
|
-
simplecov (0.
|
|
91
|
+
rspec-support (3.12.0)
|
|
92
|
+
simplecov (0.22.0)
|
|
92
93
|
docile (~> 1.1)
|
|
93
94
|
simplecov-html (~> 0.11)
|
|
94
95
|
simplecov_json_formatter (~> 0.1)
|
|
95
96
|
simplecov-html (0.12.3)
|
|
96
97
|
simplecov_json_formatter (0.1.4)
|
|
97
|
-
sqlite3 (1.
|
|
98
|
+
sqlite3 (1.3.13)
|
|
98
99
|
thor (1.2.1)
|
|
99
100
|
thread_safe (0.3.6)
|
|
100
|
-
tzinfo (1.2.
|
|
101
|
+
tzinfo (1.2.11)
|
|
101
102
|
thread_safe (~> 0.1)
|
|
102
103
|
|
|
103
104
|
PLATFORMS
|
|
@@ -107,14 +108,12 @@ DEPENDENCIES
|
|
|
107
108
|
actionpack (~> 5.1.0)
|
|
108
109
|
activerecord (~> 5.1.0)
|
|
109
110
|
appraisal
|
|
111
|
+
bigdecimal (< 2)
|
|
110
112
|
lol_dba!
|
|
111
113
|
railties (~> 5.1.0)
|
|
112
114
|
rspec-rails
|
|
113
115
|
simplecov
|
|
114
|
-
sqlite3
|
|
115
|
-
|
|
116
|
-
RUBY VERSION
|
|
117
|
-
ruby 3.1.1p18
|
|
116
|
+
sqlite3 (< 1.4)
|
|
118
117
|
|
|
119
118
|
BUNDLED WITH
|
|
120
119
|
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/
|
|
@@ -38,32 +38,33 @@ GEM
|
|
|
38
38
|
rake
|
|
39
39
|
thor (>= 0.14.0)
|
|
40
40
|
arel (9.0.0)
|
|
41
|
+
bigdecimal (1.4.4)
|
|
41
42
|
builder (3.2.4)
|
|
42
|
-
concurrent-ruby (1.
|
|
43
|
+
concurrent-ruby (1.2.0)
|
|
43
44
|
crass (1.0.6)
|
|
44
45
|
diff-lcs (1.5.0)
|
|
45
46
|
docile (1.4.0)
|
|
46
|
-
erubi (1.
|
|
47
|
+
erubi (1.12.0)
|
|
47
48
|
i18n (1.12.0)
|
|
48
49
|
concurrent-ruby (~> 1.0)
|
|
49
|
-
loofah (2.
|
|
50
|
+
loofah (2.19.1)
|
|
50
51
|
crass (~> 1.0.2)
|
|
51
52
|
nokogiri (>= 1.5.9)
|
|
52
53
|
method_source (1.0.0)
|
|
53
|
-
mini_portile2 (2.8.
|
|
54
|
-
minitest (5.
|
|
55
|
-
nokogiri (1.
|
|
54
|
+
mini_portile2 (2.8.1)
|
|
55
|
+
minitest (5.17.0)
|
|
56
|
+
nokogiri (1.14.1)
|
|
56
57
|
mini_portile2 (~> 2.8.0)
|
|
57
58
|
racc (~> 1.4)
|
|
58
|
-
racc (1.6.
|
|
59
|
-
rack (2.2.
|
|
59
|
+
racc (1.6.2)
|
|
60
|
+
rack (2.2.6.2)
|
|
60
61
|
rack-test (2.0.2)
|
|
61
62
|
rack (>= 1.3)
|
|
62
63
|
rails-dom-testing (2.0.3)
|
|
63
64
|
activesupport (>= 4.2.0)
|
|
64
65
|
nokogiri (>= 1.6)
|
|
65
|
-
rails-html-sanitizer (1.
|
|
66
|
-
loofah (~> 2.
|
|
66
|
+
rails-html-sanitizer (1.5.0)
|
|
67
|
+
loofah (~> 2.19, >= 2.19.1)
|
|
67
68
|
railties (5.2.8.1)
|
|
68
69
|
actionpack (= 5.2.8.1)
|
|
69
70
|
activesupport (= 5.2.8.1)
|
|
@@ -71,14 +72,14 @@ GEM
|
|
|
71
72
|
rake (>= 0.8.7)
|
|
72
73
|
thor (>= 0.19.0, < 2.0)
|
|
73
74
|
rake (13.0.6)
|
|
74
|
-
rspec-core (3.
|
|
75
|
-
rspec-support (~> 3.
|
|
76
|
-
rspec-expectations (3.
|
|
75
|
+
rspec-core (3.12.1)
|
|
76
|
+
rspec-support (~> 3.12.0)
|
|
77
|
+
rspec-expectations (3.12.2)
|
|
77
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
78
|
-
rspec-support (~> 3.
|
|
79
|
-
rspec-mocks (3.
|
|
79
|
+
rspec-support (~> 3.12.0)
|
|
80
|
+
rspec-mocks (3.12.3)
|
|
80
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
81
|
-
rspec-support (~> 3.
|
|
82
|
+
rspec-support (~> 3.12.0)
|
|
82
83
|
rspec-rails (5.1.2)
|
|
83
84
|
actionpack (>= 5.2)
|
|
84
85
|
activesupport (>= 5.2)
|
|
@@ -87,17 +88,17 @@ GEM
|
|
|
87
88
|
rspec-expectations (~> 3.10)
|
|
88
89
|
rspec-mocks (~> 3.10)
|
|
89
90
|
rspec-support (~> 3.10)
|
|
90
|
-
rspec-support (3.
|
|
91
|
-
simplecov (0.
|
|
91
|
+
rspec-support (3.12.0)
|
|
92
|
+
simplecov (0.22.0)
|
|
92
93
|
docile (~> 1.1)
|
|
93
94
|
simplecov-html (~> 0.11)
|
|
94
95
|
simplecov_json_formatter (~> 0.1)
|
|
95
96
|
simplecov-html (0.12.3)
|
|
96
97
|
simplecov_json_formatter (0.1.4)
|
|
97
|
-
sqlite3 (1.
|
|
98
|
+
sqlite3 (1.3.13)
|
|
98
99
|
thor (1.2.1)
|
|
99
100
|
thread_safe (0.3.6)
|
|
100
|
-
tzinfo (1.2.
|
|
101
|
+
tzinfo (1.2.11)
|
|
101
102
|
thread_safe (~> 0.1)
|
|
102
103
|
|
|
103
104
|
PLATFORMS
|
|
@@ -107,14 +108,12 @@ DEPENDENCIES
|
|
|
107
108
|
actionpack (~> 5.2.0)
|
|
108
109
|
activerecord (~> 5.2.0)
|
|
109
110
|
appraisal
|
|
111
|
+
bigdecimal (< 2)
|
|
110
112
|
lol_dba!
|
|
111
113
|
railties (~> 5.2.0)
|
|
112
114
|
rspec-rails
|
|
113
115
|
simplecov
|
|
114
|
-
sqlite3
|
|
115
|
-
|
|
116
|
-
RUBY VERSION
|
|
117
|
-
ruby 3.1.1p18
|
|
116
|
+
sqlite3 (< 1.4)
|
|
118
117
|
|
|
119
118
|
BUNDLED WITH
|
|
120
119
|
2.3.19
|
|
@@ -9,25 +9,25 @@ PATH
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
actionpack (6.1.
|
|
13
|
-
actionview (= 6.1.
|
|
14
|
-
activesupport (= 6.1.
|
|
12
|
+
actionpack (6.1.7.2)
|
|
13
|
+
actionview (= 6.1.7.2)
|
|
14
|
+
activesupport (= 6.1.7.2)
|
|
15
15
|
rack (~> 2.0, >= 2.0.9)
|
|
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.1.
|
|
20
|
-
activesupport (= 6.1.
|
|
19
|
+
actionview (6.1.7.2)
|
|
20
|
+
activesupport (= 6.1.7.2)
|
|
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.1.
|
|
26
|
-
activesupport (= 6.1.
|
|
27
|
-
activerecord (6.1.
|
|
28
|
-
activemodel (= 6.1.
|
|
29
|
-
activesupport (= 6.1.
|
|
30
|
-
activesupport (6.1.
|
|
25
|
+
activemodel (6.1.7.2)
|
|
26
|
+
activesupport (= 6.1.7.2)
|
|
27
|
+
activerecord (6.1.7.2)
|
|
28
|
+
activemodel (= 6.1.7.2)
|
|
29
|
+
activesupport (= 6.1.7.2)
|
|
30
|
+
activesupport (6.1.7.2)
|
|
31
31
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
32
32
|
i18n (>= 1.6, < 2)
|
|
33
33
|
minitest (>= 5.1)
|
|
@@ -37,67 +37,69 @@ GEM
|
|
|
37
37
|
bundler
|
|
38
38
|
rake
|
|
39
39
|
thor (>= 0.14.0)
|
|
40
|
+
bigdecimal (1.4.4)
|
|
40
41
|
builder (3.2.4)
|
|
41
|
-
concurrent-ruby (1.
|
|
42
|
+
concurrent-ruby (1.2.0)
|
|
42
43
|
crass (1.0.6)
|
|
43
44
|
diff-lcs (1.5.0)
|
|
44
45
|
docile (1.4.0)
|
|
45
|
-
erubi (1.
|
|
46
|
+
erubi (1.12.0)
|
|
46
47
|
i18n (1.12.0)
|
|
47
48
|
concurrent-ruby (~> 1.0)
|
|
48
|
-
loofah (2.
|
|
49
|
+
loofah (2.19.1)
|
|
49
50
|
crass (~> 1.0.2)
|
|
50
51
|
nokogiri (>= 1.5.9)
|
|
51
52
|
method_source (1.0.0)
|
|
52
|
-
mini_portile2 (2.8.
|
|
53
|
-
minitest (5.
|
|
54
|
-
nokogiri (1.
|
|
53
|
+
mini_portile2 (2.8.1)
|
|
54
|
+
minitest (5.17.0)
|
|
55
|
+
nokogiri (1.14.1)
|
|
55
56
|
mini_portile2 (~> 2.8.0)
|
|
56
57
|
racc (~> 1.4)
|
|
57
|
-
racc (1.6.
|
|
58
|
-
rack (2.2.
|
|
58
|
+
racc (1.6.2)
|
|
59
|
+
rack (2.2.6.2)
|
|
59
60
|
rack-test (2.0.2)
|
|
60
61
|
rack (>= 1.3)
|
|
61
62
|
rails-dom-testing (2.0.3)
|
|
62
63
|
activesupport (>= 4.2.0)
|
|
63
64
|
nokogiri (>= 1.6)
|
|
64
|
-
rails-html-sanitizer (1.
|
|
65
|
-
loofah (~> 2.
|
|
66
|
-
railties (6.1.
|
|
67
|
-
actionpack (= 6.1.
|
|
68
|
-
activesupport (= 6.1.
|
|
65
|
+
rails-html-sanitizer (1.5.0)
|
|
66
|
+
loofah (~> 2.19, >= 2.19.1)
|
|
67
|
+
railties (6.1.7.2)
|
|
68
|
+
actionpack (= 6.1.7.2)
|
|
69
|
+
activesupport (= 6.1.7.2)
|
|
69
70
|
method_source
|
|
70
71
|
rake (>= 12.2)
|
|
71
72
|
thor (~> 1.0)
|
|
72
73
|
rake (13.0.6)
|
|
73
|
-
rspec-core (3.
|
|
74
|
-
rspec-support (~> 3.
|
|
75
|
-
rspec-expectations (3.
|
|
74
|
+
rspec-core (3.12.1)
|
|
75
|
+
rspec-support (~> 3.12.0)
|
|
76
|
+
rspec-expectations (3.12.2)
|
|
76
77
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
77
|
-
rspec-support (~> 3.
|
|
78
|
-
rspec-mocks (3.
|
|
78
|
+
rspec-support (~> 3.12.0)
|
|
79
|
+
rspec-mocks (3.12.3)
|
|
79
80
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
80
|
-
rspec-support (~> 3.
|
|
81
|
-
rspec-rails (
|
|
82
|
-
actionpack (>=
|
|
83
|
-
activesupport (>=
|
|
84
|
-
railties (>=
|
|
85
|
-
rspec-core (~> 3.
|
|
86
|
-
rspec-expectations (~> 3.
|
|
87
|
-
rspec-mocks (~> 3.
|
|
88
|
-
rspec-support (~> 3.
|
|
89
|
-
rspec-support (3.
|
|
90
|
-
simplecov (0.
|
|
81
|
+
rspec-support (~> 3.12.0)
|
|
82
|
+
rspec-rails (6.0.1)
|
|
83
|
+
actionpack (>= 6.1)
|
|
84
|
+
activesupport (>= 6.1)
|
|
85
|
+
railties (>= 6.1)
|
|
86
|
+
rspec-core (~> 3.11)
|
|
87
|
+
rspec-expectations (~> 3.11)
|
|
88
|
+
rspec-mocks (~> 3.11)
|
|
89
|
+
rspec-support (~> 3.11)
|
|
90
|
+
rspec-support (3.12.0)
|
|
91
|
+
simplecov (0.22.0)
|
|
91
92
|
docile (~> 1.1)
|
|
92
93
|
simplecov-html (~> 0.11)
|
|
93
94
|
simplecov_json_formatter (~> 0.1)
|
|
94
95
|
simplecov-html (0.12.3)
|
|
95
96
|
simplecov_json_formatter (0.1.4)
|
|
96
|
-
sqlite3 (1.
|
|
97
|
+
sqlite3 (1.6.0)
|
|
98
|
+
mini_portile2 (~> 2.8.0)
|
|
97
99
|
thor (1.2.1)
|
|
98
|
-
tzinfo (2.0.
|
|
100
|
+
tzinfo (2.0.6)
|
|
99
101
|
concurrent-ruby (~> 1.0)
|
|
100
|
-
zeitwerk (2.6.
|
|
102
|
+
zeitwerk (2.6.7)
|
|
101
103
|
|
|
102
104
|
PLATFORMS
|
|
103
105
|
ruby
|
|
@@ -106,14 +108,12 @@ DEPENDENCIES
|
|
|
106
108
|
actionpack (~> 6.0)
|
|
107
109
|
activerecord (~> 6.0)
|
|
108
110
|
appraisal
|
|
111
|
+
bigdecimal (< 2)
|
|
109
112
|
lol_dba!
|
|
110
113
|
railties (~> 6.0)
|
|
111
114
|
rspec-rails
|
|
112
115
|
simplecov
|
|
113
116
|
sqlite3 (~> 1.4)
|
|
114
117
|
|
|
115
|
-
RUBY VERSION
|
|
116
|
-
ruby 3.1.1p18
|
|
117
|
-
|
|
118
118
|
BUNDLED WITH
|
|
119
119
|
2.3.19
|