active_record_proxy_adapters 0.4.0 → 0.4.1

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: 6ccf5136620d4473a468a5749886cb74d4a585b6d9b9f3f77c451715a16d9384
4
- data.tar.gz: a75b44a62192b0cff1741170c9acff251fd19348f3651ff1750446bf8d459596
3
+ metadata.gz: 58d50939b1410d1d8af3dd6b2c0dd1b2b872104faf48392b2298f897b467d7f5
4
+ data.tar.gz: 03c3373e6d5b7eab78e628c797e35642dbc9e4a314d5b45b55dadbc018f5fcde
5
5
  SHA512:
6
- metadata.gz: 9b37879abd9fd61b31bf50d450f50d0721be6251a8da0402732f3dbff1c5e486d728422581e3d95a8c5f4e762ac0a8b2ba364863e84728b3c0f5a5d54fe9eb5e
7
- data.tar.gz: 553d0c18c4274aab856c3a8f6bcc110d41babd290fe1397ec07f5abfcde810d6b22e734afd33a7035c072f1f5d2b9e1a6f6fd1d29ce19f5bd9b1b89e967f3803
6
+ metadata.gz: 9d19e223654ee5c3bf983e27d5999348ec7458bfe7e9738ff21bac022830b68a372a743b30160c07270548aa4bf68f44ecc26b4b6f9eedd93eec0a480a15e3dd
7
+ data.tar.gz: 04f8f7f579ede01034073f5854c9892fbe4ebfe46ad06876d5fe2fe2c47613b94d38f79a86ddcd2b231557fbfb243e0fd0578a18bda715c5ffddc6c521694c67
data/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.4.0] - 2025-02-24
4
+
3
5
  - Add load hooks for proxy adapters
4
6
  - Add TrilogyProxyAdapter
5
7
 
data/README.md CHANGED
@@ -39,9 +39,9 @@ Currently supported adapters:
39
39
 
40
40
  - `postgresql`
41
41
  - `mysql2`
42
+ - `trilogy`
42
43
 
43
44
  Coming soon:
44
- - `trilogy`
45
45
  - `sqlite`
46
46
 
47
47
 
@@ -87,11 +87,7 @@ end
87
87
  ```ruby
88
88
  # In your application setup
89
89
  require "active_record_proxy_adapters"
90
-
91
- ActiveSupport.on_load :active_record do
92
- require "active_record_proxy_adapters/connection_handling"
93
- ActiveRecord::Base.extend(ActiveRecordProxyAdapters::ConnectionHandling)
94
- end
90
+ require "active_record_proxy_adapters/connection_handling"
95
91
 
96
92
  # in your base model
97
93
  class ApplicationRecord << ActiveRecord::Base
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveRecordProxyAdapters
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_record_proxy_adapters
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Cruz
@@ -61,7 +61,6 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - ".rspec"
63
63
  - ".rubocop.yml"
64
- - Appraisals
65
64
  - CHANGELOG.md
66
65
  - CODE_OF_CONDUCT.md
67
66
  - Dockerfile
@@ -71,14 +70,6 @@ files:
71
70
  - db/postgresql_structure.sql
72
71
  - docker-compose.yml
73
72
  - docker/postgres_replica/cmd.sh
74
- - gemfiles/rails_7.0.gemfile
75
- - gemfiles/rails_7.0.gemfile.lock
76
- - gemfiles/rails_7.1.gemfile
77
- - gemfiles/rails_7.1.gemfile.lock
78
- - gemfiles/rails_7.2.gemfile
79
- - gemfiles/rails_7.2.gemfile.lock
80
- - gemfiles/rails_8.0.gemfile
81
- - gemfiles/rails_8.0.gemfile.lock
82
73
  - lib/active_record/connection_adapters/mysql2_proxy_adapter.rb
83
74
  - lib/active_record/connection_adapters/postgresql_proxy_adapter.rb
84
75
  - lib/active_record/connection_adapters/trilogy_proxy_adapter.rb
data/Appraisals DELETED
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- appraise "rails-7.0" do
4
- gem "activerecord", "~> 7.0.0"
5
- gem "activesupport", "~> 7.0.0"
6
- gem "concurrent-ruby", "1.3.4"
7
- gem "mutex_m"
8
- gem "bigdecimal"
9
- gem "activerecord-trilogy-adapter"
10
- end
11
-
12
- appraise "rails-7.1" do
13
- gem "activerecord", "~> 7.1.0"
14
- gem "activesupport", "~> 7.1.0"
15
- end
16
-
17
- appraise "rails-7.2" do
18
- gem "activerecord", "~> 7.2.0"
19
- gem "activesupport", "~> 7.2.0"
20
- end
21
-
22
- appraise "rails-8.0" do
23
- gem "activerecord", "~> 8.0.0"
24
- gem "activesupport", "~> 8.0.0"
25
- end
@@ -1,25 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "mysql2", "~> 0.5"
6
- gem "pg", "~> 1.5"
7
- gem "trilogy", "~> 2.9"
8
- gem "rake", "~> 13.0"
9
- gem "appraisal"
10
- gem "activerecord", "~> 7.0.0"
11
- gem "activesupport", "~> 7.0.0"
12
- gem "concurrent-ruby", "1.3.4"
13
- gem "mutex_m"
14
- gem "bigdecimal"
15
- gem "activerecord-trilogy-adapter"
16
-
17
- group :test do
18
- gem "rspec", "~> 3.0"
19
- gem "rubocop", "~> 1.72"
20
- gem "rubocop-rspec", "~> 3.5.0"
21
- gem "simplecov"
22
- gem "simplecov-cobertura"
23
- end
24
-
25
- gemspec path: "../"
@@ -1,122 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_record_proxy_adapters (0.3.1)
5
- activerecord (>= 7.0.0, < 8.1)
6
- activesupport (>= 7.0.0, < 8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (7.0.8.7)
12
- activesupport (= 7.0.8.7)
13
- activerecord (7.0.8.7)
14
- activemodel (= 7.0.8.7)
15
- activesupport (= 7.0.8.7)
16
- activerecord-trilogy-adapter (3.1.2)
17
- activerecord (>= 6.0.a, < 7.1.a)
18
- trilogy (>= 2.4.0)
19
- activesupport (7.0.8.7)
20
- concurrent-ruby (~> 1.0, >= 1.0.2)
21
- i18n (>= 1.6, < 2)
22
- minitest (>= 5.1)
23
- tzinfo (~> 2.0)
24
- appraisal (2.5.0)
25
- bundler
26
- rake
27
- thor (>= 0.14.0)
28
- ast (2.4.2)
29
- bigdecimal (3.1.9)
30
- concurrent-ruby (1.3.4)
31
- diff-lcs (1.6.0)
32
- docile (1.4.1)
33
- i18n (1.14.7)
34
- concurrent-ruby (~> 1.0)
35
- json (2.10.1)
36
- language_server-protocol (3.17.0.4)
37
- lint_roller (1.1.0)
38
- minitest (5.25.4)
39
- mutex_m (0.3.0)
40
- mysql2 (0.5.6)
41
- parallel (1.26.3)
42
- parser (3.3.7.1)
43
- ast (~> 2.4.1)
44
- racc
45
- pg (1.5.9)
46
- racc (1.8.1)
47
- rainbow (3.1.1)
48
- rake (13.2.1)
49
- regexp_parser (2.10.0)
50
- rexml (3.4.0)
51
- rspec (3.13.0)
52
- rspec-core (~> 3.13.0)
53
- rspec-expectations (~> 3.13.0)
54
- rspec-mocks (~> 3.13.0)
55
- rspec-core (3.13.3)
56
- rspec-support (~> 3.13.0)
57
- rspec-expectations (3.13.3)
58
- diff-lcs (>= 1.2.0, < 2.0)
59
- rspec-support (~> 3.13.0)
60
- rspec-mocks (3.13.2)
61
- diff-lcs (>= 1.2.0, < 2.0)
62
- rspec-support (~> 3.13.0)
63
- rspec-support (3.13.2)
64
- rubocop (1.72.2)
65
- json (~> 2.3)
66
- language_server-protocol (~> 3.17.0.2)
67
- lint_roller (~> 1.1.0)
68
- parallel (~> 1.10)
69
- parser (>= 3.3.0.2)
70
- rainbow (>= 2.2.2, < 4.0)
71
- regexp_parser (>= 2.9.3, < 3.0)
72
- rubocop-ast (>= 1.38.0, < 2.0)
73
- ruby-progressbar (~> 1.7)
74
- unicode-display_width (>= 2.4.0, < 4.0)
75
- rubocop-ast (1.38.0)
76
- parser (>= 3.3.1.0)
77
- rubocop-rspec (3.5.0)
78
- lint_roller (~> 1.1)
79
- rubocop (~> 1.72, >= 1.72.1)
80
- ruby-progressbar (1.13.0)
81
- simplecov (0.22.0)
82
- docile (~> 1.1)
83
- simplecov-html (~> 0.11)
84
- simplecov_json_formatter (~> 0.1)
85
- simplecov-cobertura (2.1.0)
86
- rexml
87
- simplecov (~> 0.19)
88
- simplecov-html (0.13.1)
89
- simplecov_json_formatter (0.1.4)
90
- thor (1.3.2)
91
- trilogy (2.9.0)
92
- tzinfo (2.0.6)
93
- concurrent-ruby (~> 1.0)
94
- unicode-display_width (3.1.4)
95
- unicode-emoji (~> 4.0, >= 4.0.4)
96
- unicode-emoji (4.0.4)
97
-
98
- PLATFORMS
99
- aarch64-linux-musl
100
- ruby
101
-
102
- DEPENDENCIES
103
- active_record_proxy_adapters!
104
- activerecord (~> 7.0.0)
105
- activerecord-trilogy-adapter
106
- activesupport (~> 7.0.0)
107
- appraisal
108
- bigdecimal
109
- concurrent-ruby (= 1.3.4)
110
- mutex_m
111
- mysql2 (~> 0.5)
112
- pg (~> 1.5)
113
- rake (~> 13.0)
114
- rspec (~> 3.0)
115
- rubocop (~> 1.72)
116
- rubocop-rspec (~> 3.5.0)
117
- simplecov
118
- simplecov-cobertura
119
- trilogy (~> 2.9)
120
-
121
- BUNDLED WITH
122
- 2.5.13
@@ -1,21 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "mysql2", "~> 0.5"
6
- gem "pg", "~> 1.5"
7
- gem "trilogy", "~> 2.9"
8
- gem "rake", "~> 13.0"
9
- gem "appraisal"
10
- gem "activerecord", "~> 7.1.0"
11
- gem "activesupport", "~> 7.1.0"
12
-
13
- group :test do
14
- gem "rspec", "~> 3.0"
15
- gem "rubocop", "~> 1.72"
16
- gem "rubocop-rspec", "~> 3.5.0"
17
- gem "simplecov"
18
- gem "simplecov-cobertura"
19
- end
20
-
21
- gemspec path: "../"
@@ -1,131 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_record_proxy_adapters (0.3.1)
5
- activerecord (>= 7.0.0, < 8.1)
6
- activesupport (>= 7.0.0, < 8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (7.1.5.1)
12
- activesupport (= 7.1.5.1)
13
- activerecord (7.1.5.1)
14
- activemodel (= 7.1.5.1)
15
- activesupport (= 7.1.5.1)
16
- timeout (>= 0.4.0)
17
- activesupport (7.1.5.1)
18
- base64
19
- benchmark (>= 0.3)
20
- bigdecimal
21
- concurrent-ruby (~> 1.0, >= 1.0.2)
22
- connection_pool (>= 2.2.5)
23
- drb
24
- i18n (>= 1.6, < 2)
25
- logger (>= 1.4.2)
26
- minitest (>= 5.1)
27
- mutex_m
28
- securerandom (>= 0.3)
29
- tzinfo (~> 2.0)
30
- appraisal (2.5.0)
31
- bundler
32
- rake
33
- thor (>= 0.14.0)
34
- ast (2.4.2)
35
- base64 (0.2.0)
36
- benchmark (0.4.0)
37
- bigdecimal (3.1.9)
38
- concurrent-ruby (1.3.5)
39
- connection_pool (2.5.0)
40
- diff-lcs (1.6.0)
41
- docile (1.4.1)
42
- drb (2.2.1)
43
- i18n (1.14.7)
44
- concurrent-ruby (~> 1.0)
45
- json (2.10.1)
46
- language_server-protocol (3.17.0.4)
47
- lint_roller (1.1.0)
48
- logger (1.6.6)
49
- minitest (5.25.4)
50
- mutex_m (0.3.0)
51
- mysql2 (0.5.6)
52
- parallel (1.26.3)
53
- parser (3.3.7.1)
54
- ast (~> 2.4.1)
55
- racc
56
- pg (1.5.9)
57
- racc (1.8.1)
58
- rainbow (3.1.1)
59
- rake (13.2.1)
60
- regexp_parser (2.10.0)
61
- rexml (3.4.0)
62
- rspec (3.13.0)
63
- rspec-core (~> 3.13.0)
64
- rspec-expectations (~> 3.13.0)
65
- rspec-mocks (~> 3.13.0)
66
- rspec-core (3.13.3)
67
- rspec-support (~> 3.13.0)
68
- rspec-expectations (3.13.3)
69
- diff-lcs (>= 1.2.0, < 2.0)
70
- rspec-support (~> 3.13.0)
71
- rspec-mocks (3.13.2)
72
- diff-lcs (>= 1.2.0, < 2.0)
73
- rspec-support (~> 3.13.0)
74
- rspec-support (3.13.2)
75
- rubocop (1.72.2)
76
- json (~> 2.3)
77
- language_server-protocol (~> 3.17.0.2)
78
- lint_roller (~> 1.1.0)
79
- parallel (~> 1.10)
80
- parser (>= 3.3.0.2)
81
- rainbow (>= 2.2.2, < 4.0)
82
- regexp_parser (>= 2.9.3, < 3.0)
83
- rubocop-ast (>= 1.38.0, < 2.0)
84
- ruby-progressbar (~> 1.7)
85
- unicode-display_width (>= 2.4.0, < 4.0)
86
- rubocop-ast (1.38.0)
87
- parser (>= 3.3.1.0)
88
- rubocop-rspec (3.5.0)
89
- lint_roller (~> 1.1)
90
- rubocop (~> 1.72, >= 1.72.1)
91
- ruby-progressbar (1.13.0)
92
- securerandom (0.4.1)
93
- simplecov (0.22.0)
94
- docile (~> 1.1)
95
- simplecov-html (~> 0.11)
96
- simplecov_json_formatter (~> 0.1)
97
- simplecov-cobertura (2.1.0)
98
- rexml
99
- simplecov (~> 0.19)
100
- simplecov-html (0.13.1)
101
- simplecov_json_formatter (0.1.4)
102
- thor (1.3.2)
103
- timeout (0.4.3)
104
- trilogy (2.9.0)
105
- tzinfo (2.0.6)
106
- concurrent-ruby (~> 1.0)
107
- unicode-display_width (3.1.4)
108
- unicode-emoji (~> 4.0, >= 4.0.4)
109
- unicode-emoji (4.0.4)
110
-
111
- PLATFORMS
112
- aarch64-linux-musl
113
- ruby
114
-
115
- DEPENDENCIES
116
- active_record_proxy_adapters!
117
- activerecord (~> 7.1.0)
118
- activesupport (~> 7.1.0)
119
- appraisal
120
- mysql2 (~> 0.5)
121
- pg (~> 1.5)
122
- rake (~> 13.0)
123
- rspec (~> 3.0)
124
- rubocop (~> 1.72)
125
- rubocop-rspec (~> 3.5.0)
126
- simplecov
127
- simplecov-cobertura
128
- trilogy (~> 2.9)
129
-
130
- BUNDLED WITH
131
- 2.5.13
@@ -1,21 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "mysql2", "~> 0.5"
6
- gem "pg", "~> 1.5"
7
- gem "trilogy", "~> 2.9"
8
- gem "rake", "~> 13.0"
9
- gem "appraisal"
10
- gem "activerecord", "~> 7.2.0"
11
- gem "activesupport", "~> 7.2.0"
12
-
13
- group :test do
14
- gem "rspec", "~> 3.0"
15
- gem "rubocop", "~> 1.72"
16
- gem "rubocop-rspec", "~> 3.5.0"
17
- gem "simplecov"
18
- gem "simplecov-cobertura"
19
- end
20
-
21
- gemspec path: "../"
@@ -1,129 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_record_proxy_adapters (0.3.1)
5
- activerecord (>= 7.0.0, < 8.1)
6
- activesupport (>= 7.0.0, < 8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (7.2.2.1)
12
- activesupport (= 7.2.2.1)
13
- activerecord (7.2.2.1)
14
- activemodel (= 7.2.2.1)
15
- activesupport (= 7.2.2.1)
16
- timeout (>= 0.4.0)
17
- activesupport (7.2.2.1)
18
- base64
19
- benchmark (>= 0.3)
20
- bigdecimal
21
- concurrent-ruby (~> 1.0, >= 1.3.1)
22
- connection_pool (>= 2.2.5)
23
- drb
24
- i18n (>= 1.6, < 2)
25
- logger (>= 1.4.2)
26
- minitest (>= 5.1)
27
- securerandom (>= 0.3)
28
- tzinfo (~> 2.0, >= 2.0.5)
29
- appraisal (2.5.0)
30
- bundler
31
- rake
32
- thor (>= 0.14.0)
33
- ast (2.4.2)
34
- base64 (0.2.0)
35
- benchmark (0.4.0)
36
- bigdecimal (3.1.9)
37
- concurrent-ruby (1.3.5)
38
- connection_pool (2.5.0)
39
- diff-lcs (1.6.0)
40
- docile (1.4.1)
41
- drb (2.2.1)
42
- i18n (1.14.7)
43
- concurrent-ruby (~> 1.0)
44
- json (2.10.1)
45
- language_server-protocol (3.17.0.4)
46
- lint_roller (1.1.0)
47
- logger (1.6.6)
48
- minitest (5.25.4)
49
- mysql2 (0.5.6)
50
- parallel (1.26.3)
51
- parser (3.3.7.1)
52
- ast (~> 2.4.1)
53
- racc
54
- pg (1.5.9)
55
- racc (1.8.1)
56
- rainbow (3.1.1)
57
- rake (13.2.1)
58
- regexp_parser (2.10.0)
59
- rexml (3.4.0)
60
- rspec (3.13.0)
61
- rspec-core (~> 3.13.0)
62
- rspec-expectations (~> 3.13.0)
63
- rspec-mocks (~> 3.13.0)
64
- rspec-core (3.13.3)
65
- rspec-support (~> 3.13.0)
66
- rspec-expectations (3.13.3)
67
- diff-lcs (>= 1.2.0, < 2.0)
68
- rspec-support (~> 3.13.0)
69
- rspec-mocks (3.13.2)
70
- diff-lcs (>= 1.2.0, < 2.0)
71
- rspec-support (~> 3.13.0)
72
- rspec-support (3.13.2)
73
- rubocop (1.72.2)
74
- json (~> 2.3)
75
- language_server-protocol (~> 3.17.0.2)
76
- lint_roller (~> 1.1.0)
77
- parallel (~> 1.10)
78
- parser (>= 3.3.0.2)
79
- rainbow (>= 2.2.2, < 4.0)
80
- regexp_parser (>= 2.9.3, < 3.0)
81
- rubocop-ast (>= 1.38.0, < 2.0)
82
- ruby-progressbar (~> 1.7)
83
- unicode-display_width (>= 2.4.0, < 4.0)
84
- rubocop-ast (1.38.0)
85
- parser (>= 3.3.1.0)
86
- rubocop-rspec (3.5.0)
87
- lint_roller (~> 1.1)
88
- rubocop (~> 1.72, >= 1.72.1)
89
- ruby-progressbar (1.13.0)
90
- securerandom (0.4.1)
91
- simplecov (0.22.0)
92
- docile (~> 1.1)
93
- simplecov-html (~> 0.11)
94
- simplecov_json_formatter (~> 0.1)
95
- simplecov-cobertura (2.1.0)
96
- rexml
97
- simplecov (~> 0.19)
98
- simplecov-html (0.13.1)
99
- simplecov_json_formatter (0.1.4)
100
- thor (1.3.2)
101
- timeout (0.4.3)
102
- trilogy (2.9.0)
103
- tzinfo (2.0.6)
104
- concurrent-ruby (~> 1.0)
105
- unicode-display_width (3.1.4)
106
- unicode-emoji (~> 4.0, >= 4.0.4)
107
- unicode-emoji (4.0.4)
108
-
109
- PLATFORMS
110
- aarch64-linux-musl
111
- ruby
112
-
113
- DEPENDENCIES
114
- active_record_proxy_adapters!
115
- activerecord (~> 7.2.0)
116
- activesupport (~> 7.2.0)
117
- appraisal
118
- mysql2 (~> 0.5)
119
- pg (~> 1.5)
120
- rake (~> 13.0)
121
- rspec (~> 3.0)
122
- rubocop (~> 1.72)
123
- rubocop-rspec (~> 3.5.0)
124
- simplecov
125
- simplecov-cobertura
126
- trilogy (~> 2.9)
127
-
128
- BUNDLED WITH
129
- 2.5.13
@@ -1,21 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "mysql2", "~> 0.5"
6
- gem "pg", "~> 1.5"
7
- gem "trilogy", "~> 2.9"
8
- gem "rake", "~> 13.0"
9
- gem "appraisal"
10
- gem "activerecord", "~> 8.0.0"
11
- gem "activesupport", "~> 8.0.0"
12
-
13
- group :test do
14
- gem "rspec", "~> 3.0"
15
- gem "rubocop", "~> 1.72"
16
- gem "rubocop-rspec", "~> 3.5.0"
17
- gem "simplecov"
18
- gem "simplecov-cobertura"
19
- end
20
-
21
- gemspec path: "../"
@@ -1,131 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_record_proxy_adapters (0.3.1)
5
- activerecord (>= 7.0.0, < 8.1)
6
- activesupport (>= 7.0.0, < 8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (8.0.1)
12
- activesupport (= 8.0.1)
13
- activerecord (8.0.1)
14
- activemodel (= 8.0.1)
15
- activesupport (= 8.0.1)
16
- timeout (>= 0.4.0)
17
- activesupport (8.0.1)
18
- base64
19
- benchmark (>= 0.3)
20
- bigdecimal
21
- concurrent-ruby (~> 1.0, >= 1.3.1)
22
- connection_pool (>= 2.2.5)
23
- drb
24
- i18n (>= 1.6, < 2)
25
- logger (>= 1.4.2)
26
- minitest (>= 5.1)
27
- securerandom (>= 0.3)
28
- tzinfo (~> 2.0, >= 2.0.5)
29
- uri (>= 0.13.1)
30
- appraisal (2.5.0)
31
- bundler
32
- rake
33
- thor (>= 0.14.0)
34
- ast (2.4.2)
35
- base64 (0.2.0)
36
- benchmark (0.4.0)
37
- bigdecimal (3.1.9)
38
- concurrent-ruby (1.3.5)
39
- connection_pool (2.5.0)
40
- diff-lcs (1.6.0)
41
- docile (1.4.1)
42
- drb (2.2.1)
43
- i18n (1.14.7)
44
- concurrent-ruby (~> 1.0)
45
- json (2.10.1)
46
- language_server-protocol (3.17.0.4)
47
- lint_roller (1.1.0)
48
- logger (1.6.6)
49
- minitest (5.25.4)
50
- mysql2 (0.5.6)
51
- parallel (1.26.3)
52
- parser (3.3.7.1)
53
- ast (~> 2.4.1)
54
- racc
55
- pg (1.5.9)
56
- racc (1.8.1)
57
- rainbow (3.1.1)
58
- rake (13.2.1)
59
- regexp_parser (2.10.0)
60
- rexml (3.4.0)
61
- rspec (3.13.0)
62
- rspec-core (~> 3.13.0)
63
- rspec-expectations (~> 3.13.0)
64
- rspec-mocks (~> 3.13.0)
65
- rspec-core (3.13.3)
66
- rspec-support (~> 3.13.0)
67
- rspec-expectations (3.13.3)
68
- diff-lcs (>= 1.2.0, < 2.0)
69
- rspec-support (~> 3.13.0)
70
- rspec-mocks (3.13.2)
71
- diff-lcs (>= 1.2.0, < 2.0)
72
- rspec-support (~> 3.13.0)
73
- rspec-support (3.13.2)
74
- rubocop (1.72.2)
75
- json (~> 2.3)
76
- language_server-protocol (~> 3.17.0.2)
77
- lint_roller (~> 1.1.0)
78
- parallel (~> 1.10)
79
- parser (>= 3.3.0.2)
80
- rainbow (>= 2.2.2, < 4.0)
81
- regexp_parser (>= 2.9.3, < 3.0)
82
- rubocop-ast (>= 1.38.0, < 2.0)
83
- ruby-progressbar (~> 1.7)
84
- unicode-display_width (>= 2.4.0, < 4.0)
85
- rubocop-ast (1.38.0)
86
- parser (>= 3.3.1.0)
87
- rubocop-rspec (3.5.0)
88
- lint_roller (~> 1.1)
89
- rubocop (~> 1.72, >= 1.72.1)
90
- ruby-progressbar (1.13.0)
91
- securerandom (0.4.1)
92
- simplecov (0.22.0)
93
- docile (~> 1.1)
94
- simplecov-html (~> 0.11)
95
- simplecov_json_formatter (~> 0.1)
96
- simplecov-cobertura (2.1.0)
97
- rexml
98
- simplecov (~> 0.19)
99
- simplecov-html (0.13.1)
100
- simplecov_json_formatter (0.1.4)
101
- thor (1.3.2)
102
- timeout (0.4.3)
103
- trilogy (2.9.0)
104
- tzinfo (2.0.6)
105
- concurrent-ruby (~> 1.0)
106
- unicode-display_width (3.1.4)
107
- unicode-emoji (~> 4.0, >= 4.0.4)
108
- unicode-emoji (4.0.4)
109
- uri (1.0.2)
110
-
111
- PLATFORMS
112
- aarch64-linux-musl
113
- ruby
114
-
115
- DEPENDENCIES
116
- active_record_proxy_adapters!
117
- activerecord (~> 8.0.0)
118
- activesupport (~> 8.0.0)
119
- appraisal
120
- mysql2 (~> 0.5)
121
- pg (~> 1.5)
122
- rake (~> 13.0)
123
- rspec (~> 3.0)
124
- rubocop (~> 1.72)
125
- rubocop-rspec (~> 3.5.0)
126
- simplecov
127
- simplecov-cobertura
128
- trilogy (~> 2.9)
129
-
130
- BUNDLED WITH
131
- 2.5.13