nested_select 0.4.2 → 0.5.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: 5a119142073dc411c9af1581fa20953d0931293ab8d743e197c1fe8ab66b6d85
4
- data.tar.gz: 2e33d0e18a6285d508198d32b8c7094eb4e438257d52c45d3de65f6fc5347733
3
+ metadata.gz: 6cb1e948873e81d15bbe96e4c15c485d8b2835e8cfb1862966bd99bb69d52f27
4
+ data.tar.gz: e6e726bae63cf87e702131f80984e8021a229b7cc2c54b21031298e7f819cc08
5
5
  SHA512:
6
- metadata.gz: 58aa697961c7872373973bdbdde0f097e70643fd2c8d325b26df8e079bb5ce0d3be4ca5f1445e907e6a0ccf3f9caa8e21d5dc21a5d2f646f40d5bd649132952d
7
- data.tar.gz: 402a314b8f3313f2431ec6b1f707408444ea26e5ee1f199f3de525afb85ba507297b2cf70aa9a90e54f6a9a01d3ff1038d842b81b753879533c295743c5b76b7
6
+ metadata.gz: 0420e35c4ee39866db944fa381ce731136389f9ab15e4597242a72d03d0fb9b65c904476aa86492c471e73b19bffaf84403986ef15dcf6cd8659b71588c7aa83
7
+ data.tar.gz: e53e6d4c19564899d1643826a158072ca217a4b50d8baf14a7aa38d82ac0097b246008134a18bf24a6dcf84f1f65a92f9a209cd04cb8c0874b5d81795e8c1354
data/.rubocop.yml CHANGED
@@ -1,5 +1,8 @@
1
+ inherit_gem:
2
+ rubocop-shopify: rubocop.yml
3
+
1
4
  AllCops:
2
- TargetRubyVersion: 3.0
5
+ TargetRubyVersion: 3.4
3
6
 
4
7
  Style/StringLiterals:
5
8
  EnforcedStyle: double_quotes
data/Appraisals CHANGED
@@ -1,11 +1,17 @@
1
- appraise "rails-7" do
2
- gem "rails", "~> 7.1"
1
+ # frozen_string_literal: true
2
+
3
+ appraise "rails-7.0" do
4
+ gem "rails", "~> 7.0.0"
5
+ end
6
+
7
+ appraise "rails-7.1" do
8
+ gem "rails", "~> 7.1.3"
3
9
  end
4
10
 
5
11
  appraise "rails-7.2" do
6
- gem "rails", "~> 7.1"
12
+ gem "rails", "~> 7.2.0"
7
13
  end
8
14
 
9
15
  appraise "rails-8" do
10
16
  gem "rails", ">= 8"
11
- end
17
+ end
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [0.5.0] - 2025-11-22
2
+ - fixed issue with belongs_to as a root pf the preloading branch and multiple branches
3
+ - partially rubocoped
4
+
5
+ ## [0.4.4] - 2025-05-09
6
+ - fixed appraisals and local docker compose
7
+
8
+ ## [0.4.3] - 2025-05-09
9
+ - fixed regression on through scopes whenever nested_select_values are blank
10
+
1
11
  ## [0.4.2] - 2025-03-01
2
12
  - Refactoring
3
13
  - Removed all commented out code
data/Dockerfile_apprsl CHANGED
@@ -13,10 +13,13 @@ RUN sh -c 'echo "local all all
13
13
 
14
14
  RUN gem install bundler
15
15
 
16
- COPY lib/rails_sql_prettifier/version.rb /app/lib/rails_sql_prettifier/version.rb
17
- COPY rails_sql_prettifier.gemspec /app/
16
+ COPY lib/nested_select/version.rb /app/lib/nested_select/version.rb
17
+ COPY nested_select.gemspec /app/
18
18
  COPY Gemfil* /app/
19
- COPY Appraisals /app/
19
+
20
20
  #
21
21
  RUN bundle install
22
- RUN bundle exec appraisal install
22
+
23
+ COPY gemfiles /app/
24
+ COPY Appraisals /app/
25
+ RUN appraisal install
data/README.md CHANGED
@@ -5,7 +5,7 @@ Here is a benchmark output for a [gist I've created](https://gist.github.com/ale
5
5
  displaying a course with its structure.
6
6
 
7
7
  Given:
8
- - Models are Course, Topic, Lesson.
8
+ - Models are: Course, Topic, Lesson.
9
9
  - Their relations has a following structure: course has_many topics, each topic has_many lessons.
10
10
  - To display a single course you need its structure, minimum data needed: topic and lessons titles and ordering.
11
11
 
@@ -38,8 +38,8 @@ RAM ratio improvements x33.54678126442086 on retain objects
38
38
  RAM ratio improvements x15.002820281285949 on total_allocated objects
39
39
  ```
40
40
 
41
- **100 courses**, this is kinda a synthetic example since there is no UI for multiple courses display together with their structures.
42
- It executed against the real production data. (nested select serves x7 faster):
41
+ **100 courses**, this is kinda a synthetic example since there is no UI for multiple courses
42
+ display together with their structures. It executed against the real production data. (nested select serves x7 faster):
43
43
 
44
44
  ```
45
45
  irb(main):280:0> compare_nested_select(ids, 100)
data/Rakefile CHANGED
@@ -9,4 +9,4 @@ require "rubocop/rake_task"
9
9
 
10
10
  RuboCop::RakeTask.new
11
11
 
12
- task default: %i[test rubocop]
12
+ task default: [:test, :rubocop]
data/docker-compose.yml CHANGED
@@ -10,12 +10,13 @@ services:
10
10
  - './test:/app/test'
11
11
  - './Gemfile:/app/Gemfile'
12
12
  - './Gemfile.lock:/app/Gemfile.lock'
13
+ - './gemfiles:/app/gemfiles'
13
14
 
14
15
  appraisal:
15
16
  build:
16
17
  context: .
17
18
  dockerfile: Dockerfile_apprsl
18
19
  image: nested_select_appraisal
19
- command: /bin/bash -c 'service postgresql start && appraisal rake test'
20
+ command: /bin/bash -c 'appraisal install && appraisal rake test'
20
21
  volumes:
21
22
  - '.:/app'
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake", "~> 13.0"
6
+ gem "minitest", "~> 5.16"
7
+ gem "rubocop", "~> 1.21"
8
+ gem "rails", "~> 7.0.0"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,219 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nested_select (0.4.4)
5
+ activerecord (>= 7)
6
+ activesupport (>= 7)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (7.0.8.7)
12
+ actionpack (= 7.0.8.7)
13
+ activesupport (= 7.0.8.7)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (7.0.8.7)
17
+ actionpack (= 7.0.8.7)
18
+ activejob (= 7.0.8.7)
19
+ activerecord (= 7.0.8.7)
20
+ activestorage (= 7.0.8.7)
21
+ activesupport (= 7.0.8.7)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.0.8.7)
27
+ actionpack (= 7.0.8.7)
28
+ actionview (= 7.0.8.7)
29
+ activejob (= 7.0.8.7)
30
+ activesupport (= 7.0.8.7)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
35
+ rails-dom-testing (~> 2.0)
36
+ actionpack (7.0.8.7)
37
+ actionview (= 7.0.8.7)
38
+ activesupport (= 7.0.8.7)
39
+ rack (~> 2.0, >= 2.2.4)
40
+ rack-test (>= 0.6.3)
41
+ rails-dom-testing (~> 2.0)
42
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
+ actiontext (7.0.8.7)
44
+ actionpack (= 7.0.8.7)
45
+ activerecord (= 7.0.8.7)
46
+ activestorage (= 7.0.8.7)
47
+ activesupport (= 7.0.8.7)
48
+ globalid (>= 0.6.0)
49
+ nokogiri (>= 1.8.5)
50
+ actionview (7.0.8.7)
51
+ activesupport (= 7.0.8.7)
52
+ builder (~> 3.1)
53
+ erubi (~> 1.4)
54
+ rails-dom-testing (~> 2.0)
55
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
56
+ activejob (7.0.8.7)
57
+ activesupport (= 7.0.8.7)
58
+ globalid (>= 0.3.6)
59
+ activemodel (7.0.8.7)
60
+ activesupport (= 7.0.8.7)
61
+ activerecord (7.0.8.7)
62
+ activemodel (= 7.0.8.7)
63
+ activesupport (= 7.0.8.7)
64
+ activestorage (7.0.8.7)
65
+ actionpack (= 7.0.8.7)
66
+ activejob (= 7.0.8.7)
67
+ activerecord (= 7.0.8.7)
68
+ activesupport (= 7.0.8.7)
69
+ marcel (~> 1.0)
70
+ mini_mime (>= 1.1.0)
71
+ activesupport (7.0.8.7)
72
+ concurrent-ruby (~> 1.0, >= 1.0.2)
73
+ i18n (>= 1.6, < 2)
74
+ minitest (>= 5.1)
75
+ tzinfo (~> 2.0)
76
+ amazing_print (1.7.2)
77
+ appraisal (2.5.0)
78
+ bundler
79
+ rake
80
+ thor (>= 0.14.0)
81
+ ast (2.4.3)
82
+ base64 (0.2.0)
83
+ builder (3.3.0)
84
+ byebug (12.0.0)
85
+ concurrent-ruby (1.3.5)
86
+ crass (1.0.6)
87
+ date (3.4.1)
88
+ erubi (1.13.1)
89
+ globalid (1.2.1)
90
+ activesupport (>= 6.1)
91
+ i18n (1.14.7)
92
+ concurrent-ruby (~> 1.0)
93
+ json (2.11.3)
94
+ language_server-protocol (3.17.0.4)
95
+ lint_roller (1.1.0)
96
+ loofah (2.24.0)
97
+ crass (~> 1.0.2)
98
+ nokogiri (>= 1.12.0)
99
+ mail (2.8.1)
100
+ mini_mime (>= 0.1.1)
101
+ net-imap
102
+ net-pop
103
+ net-smtp
104
+ marcel (1.0.4)
105
+ method_source (1.1.0)
106
+ mini_mime (1.1.5)
107
+ minitest (5.25.5)
108
+ net-imap (0.5.8)
109
+ date
110
+ net-protocol
111
+ net-pop (0.1.2)
112
+ net-protocol
113
+ net-protocol (0.2.2)
114
+ timeout
115
+ net-smtp (0.5.1)
116
+ net-protocol
117
+ niceql (0.6.1)
118
+ nio4r (2.7.4)
119
+ nokogiri (1.18.8-x86_64-linux-gnu)
120
+ racc (~> 1.4)
121
+ parallel (1.27.0)
122
+ parser (3.3.8.0)
123
+ ast (~> 2.4.1)
124
+ racc
125
+ prism (1.4.0)
126
+ racc (1.8.1)
127
+ rack (2.2.13)
128
+ rack-test (2.2.0)
129
+ rack (>= 1.3)
130
+ rails (7.0.8.7)
131
+ actioncable (= 7.0.8.7)
132
+ actionmailbox (= 7.0.8.7)
133
+ actionmailer (= 7.0.8.7)
134
+ actionpack (= 7.0.8.7)
135
+ actiontext (= 7.0.8.7)
136
+ actionview (= 7.0.8.7)
137
+ activejob (= 7.0.8.7)
138
+ activemodel (= 7.0.8.7)
139
+ activerecord (= 7.0.8.7)
140
+ activestorage (= 7.0.8.7)
141
+ activesupport (= 7.0.8.7)
142
+ bundler (>= 1.15.0)
143
+ railties (= 7.0.8.7)
144
+ rails-dom-testing (2.2.0)
145
+ activesupport (>= 5.0.0)
146
+ minitest
147
+ nokogiri (>= 1.6)
148
+ rails-html-sanitizer (1.6.2)
149
+ loofah (~> 2.21)
150
+ 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)
151
+ rails-i18n (7.0.10)
152
+ i18n (>= 0.7, < 2)
153
+ railties (>= 6.0.0, < 8)
154
+ rails_sql_prettifier (7.0.7)
155
+ activerecord (>= 7)
156
+ niceql (~> 0.6)
157
+ railties (7.0.8.7)
158
+ actionpack (= 7.0.8.7)
159
+ activesupport (= 7.0.8.7)
160
+ method_source
161
+ rake (>= 12.2)
162
+ thor (~> 1.0)
163
+ zeitwerk (~> 2.5)
164
+ rainbow (3.1.1)
165
+ rake (13.2.1)
166
+ regexp_parser (2.10.0)
167
+ rubocop (1.75.4)
168
+ json (~> 2.3)
169
+ language_server-protocol (~> 3.17.0.2)
170
+ lint_roller (~> 1.1.0)
171
+ parallel (~> 1.10)
172
+ parser (>= 3.3.0.2)
173
+ rainbow (>= 2.2.2, < 4.0)
174
+ regexp_parser (>= 2.9.3, < 3.0)
175
+ rubocop-ast (>= 1.44.0, < 2.0)
176
+ ruby-progressbar (~> 1.7)
177
+ unicode-display_width (>= 2.4.0, < 4.0)
178
+ rubocop-ast (1.44.1)
179
+ parser (>= 3.3.7.2)
180
+ prism (~> 1.4)
181
+ rubocop-shopify (2.17.0)
182
+ rubocop (~> 1.62)
183
+ ruby-progressbar (1.13.0)
184
+ sqlite3 (1.7.3-x86_64-linux)
185
+ stubberry (0.3.0)
186
+ thor (1.3.2)
187
+ timeout (0.4.3)
188
+ tzinfo (2.0.6)
189
+ concurrent-ruby (~> 1.0)
190
+ unicode-display_width (3.1.4)
191
+ unicode-emoji (~> 4.0, >= 4.0.4)
192
+ unicode-emoji (4.0.4)
193
+ websocket-driver (0.7.7)
194
+ base64
195
+ websocket-extensions (>= 0.1.0)
196
+ websocket-extensions (0.1.5)
197
+ zeitwerk (2.7.2)
198
+
199
+ PLATFORMS
200
+ x86_64-linux-gnu
201
+
202
+ DEPENDENCIES
203
+ amazing_print
204
+ appraisal
205
+ bundler (>= 1.11)
206
+ byebug
207
+ minitest (~> 5.16)
208
+ nested_select!
209
+ rails (~> 7.0.0)
210
+ rails-i18n (>= 4)
211
+ rails_sql_prettifier
212
+ rake (~> 13.0)
213
+ rubocop (~> 1.21)
214
+ rubocop-shopify
215
+ sqlite3
216
+ stubberry
217
+
218
+ BUNDLED WITH
219
+ 2.6.8
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake", "~> 13.0"
6
+ gem "minitest", "~> 5.16"
7
+ gem "rubocop", "~> 1.21"
8
+ gem "rails", "~> 7.1.3"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,287 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nested_select (0.4.4)
5
+ activerecord (>= 7)
6
+ activesupport (>= 7)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (7.1.5.1)
12
+ actionpack (= 7.1.5.1)
13
+ activesupport (= 7.1.5.1)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ zeitwerk (~> 2.6)
17
+ actionmailbox (7.1.5.1)
18
+ actionpack (= 7.1.5.1)
19
+ activejob (= 7.1.5.1)
20
+ activerecord (= 7.1.5.1)
21
+ activestorage (= 7.1.5.1)
22
+ activesupport (= 7.1.5.1)
23
+ mail (>= 2.7.1)
24
+ net-imap
25
+ net-pop
26
+ net-smtp
27
+ actionmailer (7.1.5.1)
28
+ actionpack (= 7.1.5.1)
29
+ actionview (= 7.1.5.1)
30
+ activejob (= 7.1.5.1)
31
+ activesupport (= 7.1.5.1)
32
+ mail (~> 2.5, >= 2.5.4)
33
+ net-imap
34
+ net-pop
35
+ net-smtp
36
+ rails-dom-testing (~> 2.2)
37
+ actionpack (7.1.5.1)
38
+ actionview (= 7.1.5.1)
39
+ activesupport (= 7.1.5.1)
40
+ nokogiri (>= 1.8.5)
41
+ racc
42
+ rack (>= 2.2.4)
43
+ rack-session (>= 1.0.1)
44
+ rack-test (>= 0.6.3)
45
+ rails-dom-testing (~> 2.2)
46
+ rails-html-sanitizer (~> 1.6)
47
+ actiontext (7.1.5.1)
48
+ actionpack (= 7.1.5.1)
49
+ activerecord (= 7.1.5.1)
50
+ activestorage (= 7.1.5.1)
51
+ activesupport (= 7.1.5.1)
52
+ globalid (>= 0.6.0)
53
+ nokogiri (>= 1.8.5)
54
+ actionview (7.1.5.1)
55
+ activesupport (= 7.1.5.1)
56
+ builder (~> 3.1)
57
+ erubi (~> 1.11)
58
+ rails-dom-testing (~> 2.2)
59
+ rails-html-sanitizer (~> 1.6)
60
+ activejob (7.1.5.1)
61
+ activesupport (= 7.1.5.1)
62
+ globalid (>= 0.3.6)
63
+ activemodel (7.1.5.1)
64
+ activesupport (= 7.1.5.1)
65
+ activerecord (7.1.5.1)
66
+ activemodel (= 7.1.5.1)
67
+ activesupport (= 7.1.5.1)
68
+ timeout (>= 0.4.0)
69
+ activestorage (7.1.5.1)
70
+ actionpack (= 7.1.5.1)
71
+ activejob (= 7.1.5.1)
72
+ activerecord (= 7.1.5.1)
73
+ activesupport (= 7.1.5.1)
74
+ marcel (~> 1.0)
75
+ activesupport (7.1.5.1)
76
+ base64
77
+ benchmark (>= 0.3)
78
+ bigdecimal
79
+ concurrent-ruby (~> 1.0, >= 1.0.2)
80
+ connection_pool (>= 2.2.5)
81
+ drb
82
+ i18n (>= 1.6, < 2)
83
+ logger (>= 1.4.2)
84
+ minitest (>= 5.1)
85
+ mutex_m
86
+ securerandom (>= 0.3)
87
+ tzinfo (~> 2.0)
88
+ amazing_print (1.8.0)
89
+ appraisal (2.5.0)
90
+ bundler
91
+ rake
92
+ thor (>= 0.14.0)
93
+ ast (2.4.3)
94
+ base64 (0.2.0)
95
+ benchmark (0.4.0)
96
+ bigdecimal (3.1.9)
97
+ builder (3.3.0)
98
+ byebug (12.0.0)
99
+ concurrent-ruby (1.3.5)
100
+ connection_pool (2.5.3)
101
+ crass (1.0.6)
102
+ date (3.4.1)
103
+ drb (2.2.1)
104
+ erubi (1.13.1)
105
+ globalid (1.2.1)
106
+ activesupport (>= 6.1)
107
+ i18n (1.14.7)
108
+ concurrent-ruby (~> 1.0)
109
+ io-console (0.8.0)
110
+ irb (1.15.2)
111
+ pp (>= 0.6.0)
112
+ rdoc (>= 4.0.0)
113
+ reline (>= 0.4.2)
114
+ json (2.11.3)
115
+ language_server-protocol (3.17.0.4)
116
+ lint_roller (1.1.0)
117
+ logger (1.7.0)
118
+ loofah (2.24.0)
119
+ crass (~> 1.0.2)
120
+ nokogiri (>= 1.12.0)
121
+ mail (2.8.1)
122
+ mini_mime (>= 0.1.1)
123
+ net-imap
124
+ net-pop
125
+ net-smtp
126
+ marcel (1.0.4)
127
+ mini_mime (1.1.5)
128
+ minitest (5.25.5)
129
+ mutex_m (0.3.0)
130
+ net-imap (0.5.8)
131
+ date
132
+ net-protocol
133
+ net-pop (0.1.2)
134
+ net-protocol
135
+ net-protocol (0.2.2)
136
+ timeout
137
+ net-smtp (0.5.1)
138
+ net-protocol
139
+ niceql (0.6.1)
140
+ nio4r (2.7.4)
141
+ nokogiri (1.18.8-aarch64-linux-gnu)
142
+ racc (~> 1.4)
143
+ nokogiri (1.18.8-aarch64-linux-musl)
144
+ racc (~> 1.4)
145
+ nokogiri (1.18.8-arm-linux-gnu)
146
+ racc (~> 1.4)
147
+ nokogiri (1.18.8-arm-linux-musl)
148
+ racc (~> 1.4)
149
+ nokogiri (1.18.8-arm64-darwin)
150
+ racc (~> 1.4)
151
+ nokogiri (1.18.8-x86_64-darwin)
152
+ racc (~> 1.4)
153
+ nokogiri (1.18.8-x86_64-linux-gnu)
154
+ racc (~> 1.4)
155
+ nokogiri (1.18.8-x86_64-linux-musl)
156
+ racc (~> 1.4)
157
+ parallel (1.27.0)
158
+ parser (3.3.8.0)
159
+ ast (~> 2.4.1)
160
+ racc
161
+ pp (0.6.2)
162
+ prettyprint
163
+ prettyprint (0.2.0)
164
+ prism (1.4.0)
165
+ psych (5.2.4)
166
+ date
167
+ stringio
168
+ racc (1.8.1)
169
+ rack (3.1.14)
170
+ rack-session (2.1.1)
171
+ base64 (>= 0.1.0)
172
+ rack (>= 3.0.0)
173
+ rack-test (2.2.0)
174
+ rack (>= 1.3)
175
+ rackup (2.2.1)
176
+ rack (>= 3)
177
+ rails (7.1.5.1)
178
+ actioncable (= 7.1.5.1)
179
+ actionmailbox (= 7.1.5.1)
180
+ actionmailer (= 7.1.5.1)
181
+ actionpack (= 7.1.5.1)
182
+ actiontext (= 7.1.5.1)
183
+ actionview (= 7.1.5.1)
184
+ activejob (= 7.1.5.1)
185
+ activemodel (= 7.1.5.1)
186
+ activerecord (= 7.1.5.1)
187
+ activestorage (= 7.1.5.1)
188
+ activesupport (= 7.1.5.1)
189
+ bundler (>= 1.15.0)
190
+ railties (= 7.1.5.1)
191
+ rails-dom-testing (2.2.0)
192
+ activesupport (>= 5.0.0)
193
+ minitest
194
+ nokogiri (>= 1.6)
195
+ rails-html-sanitizer (1.6.2)
196
+ loofah (~> 2.21)
197
+ 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)
198
+ rails-i18n (7.0.10)
199
+ i18n (>= 0.7, < 2)
200
+ railties (>= 6.0.0, < 8)
201
+ rails_sql_prettifier (7.0.7)
202
+ activerecord (>= 7)
203
+ niceql (~> 0.6)
204
+ railties (7.1.5.1)
205
+ actionpack (= 7.1.5.1)
206
+ activesupport (= 7.1.5.1)
207
+ irb
208
+ rackup (>= 1.0.0)
209
+ rake (>= 12.2)
210
+ thor (~> 1.0, >= 1.2.2)
211
+ zeitwerk (~> 2.6)
212
+ rainbow (3.1.1)
213
+ rake (13.2.1)
214
+ rdoc (6.13.1)
215
+ psych (>= 4.0.0)
216
+ regexp_parser (2.10.0)
217
+ reline (0.6.1)
218
+ io-console (~> 0.5)
219
+ rubocop (1.75.5)
220
+ json (~> 2.3)
221
+ language_server-protocol (~> 3.17.0.2)
222
+ lint_roller (~> 1.1.0)
223
+ parallel (~> 1.10)
224
+ parser (>= 3.3.0.2)
225
+ rainbow (>= 2.2.2, < 4.0)
226
+ regexp_parser (>= 2.9.3, < 3.0)
227
+ rubocop-ast (>= 1.44.0, < 2.0)
228
+ ruby-progressbar (~> 1.7)
229
+ unicode-display_width (>= 2.4.0, < 4.0)
230
+ rubocop-ast (1.44.1)
231
+ parser (>= 3.3.7.2)
232
+ prism (~> 1.4)
233
+ rubocop-shopify (2.17.0)
234
+ rubocop (~> 1.62)
235
+ ruby-progressbar (1.13.0)
236
+ securerandom (0.4.1)
237
+ sqlite3 (2.6.0-aarch64-linux-gnu)
238
+ sqlite3 (2.6.0-aarch64-linux-musl)
239
+ sqlite3 (2.6.0-arm-linux-gnu)
240
+ sqlite3 (2.6.0-arm-linux-musl)
241
+ sqlite3 (2.6.0-arm64-darwin)
242
+ sqlite3 (2.6.0-x86_64-darwin)
243
+ sqlite3 (2.6.0-x86_64-linux-gnu)
244
+ sqlite3 (2.6.0-x86_64-linux-musl)
245
+ stringio (3.1.7)
246
+ stubberry (0.3.0)
247
+ thor (1.3.2)
248
+ timeout (0.4.3)
249
+ tzinfo (2.0.6)
250
+ concurrent-ruby (~> 1.0)
251
+ unicode-display_width (3.1.4)
252
+ unicode-emoji (~> 4.0, >= 4.0.4)
253
+ unicode-emoji (4.0.4)
254
+ websocket-driver (0.7.7)
255
+ base64
256
+ websocket-extensions (>= 0.1.0)
257
+ websocket-extensions (0.1.5)
258
+ zeitwerk (2.7.2)
259
+
260
+ PLATFORMS
261
+ aarch64-linux-gnu
262
+ aarch64-linux-musl
263
+ arm-linux-gnu
264
+ arm-linux-musl
265
+ arm64-darwin
266
+ x86_64-darwin
267
+ x86_64-linux-gnu
268
+ x86_64-linux-musl
269
+
270
+ DEPENDENCIES
271
+ amazing_print
272
+ appraisal
273
+ bundler (>= 1.11)
274
+ byebug
275
+ minitest (~> 5.16)
276
+ nested_select!
277
+ rails (~> 7.1.3)
278
+ rails-i18n (>= 4)
279
+ rails_sql_prettifier
280
+ rake (~> 13.0)
281
+ rubocop (~> 1.21)
282
+ rubocop-shopify
283
+ sqlite3
284
+ stubberry
285
+
286
+ BUNDLED WITH
287
+ 2.6.8
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake", "~> 13.0"
6
+ gem "minitest", "~> 5.16"
7
+ gem "rubocop", "~> 1.21"
8
+ gem "rails", "~> 7.2.0"
9
+
10
+ gemspec path: "../"