nested_select 0.4.2 → 0.4.4

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: 90b648bcd4371a277e27841b52d173fa0951c49a8fa89e1e3894ce1e2c4a0a02
4
+ data.tar.gz: effb7e1afb4b609ff812ca1aaf7803eb6e65b2729650399656335fc1adee35a9
5
5
  SHA512:
6
- metadata.gz: 58aa697961c7872373973bdbdde0f097e70643fd2c8d325b26df8e079bb5ce0d3be4ca5f1445e907e6a0ccf3f9caa8e21d5dc21a5d2f646f40d5bd649132952d
7
- data.tar.gz: 402a314b8f3313f2431ec6b1f707408444ea26e5ee1f199f3de525afb85ba507297b2cf70aa9a90e54f6a9a01d3ff1038d842b81b753879533c295743c5b76b7
6
+ metadata.gz: 2d21c76feffd32cfb7950edd49027e0082a91a6473ad6713eb109fdf2285f42091f8bbbf034ab1c4b5a37c5119ae27ce678fd983a73dc99002cb8c832203ef83
7
+ data.tar.gz: cac45499b8c4748a80bf91210538216764400ede85f84fcf9afc3f1308f73822edfa0c3cfb5a9dbbc1b45fc48b8bb7a8ea7f720a34a7731a0e19f2b5cb1c16ff
data/Appraisals CHANGED
@@ -1,9 +1,13 @@
1
- appraise "rails-7" do
2
- gem "rails", "~> 7.1"
1
+ appraise "rails-7.0" do
2
+ gem "rails", "~> 7.0.0"
3
+ end
4
+
5
+ appraise "rails-7.1" do
6
+ gem "rails", "~> 7.1.3"
3
7
  end
4
8
 
5
9
  appraise "rails-7.2" do
6
- gem "rails", "~> 7.1"
10
+ gem "rails", "~> 7.2.0"
7
11
  end
8
12
 
9
13
  appraise "rails-8" do
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.4.4] - 2025-05-09
2
+ - fixed appraisals and local docker compose
3
+ -
4
+
5
+ ## [0.4.3] - 2025-05-09
6
+ - fixed regression on through scopes whenever nested_select_values are blank
7
+
1
8
  ## [0.4.2] - 2025-03-01
2
9
  - Refactoring
3
10
  - 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/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: "../"
@@ -0,0 +1,253 @@
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.2.2.1)
12
+ actionpack (= 7.2.2.1)
13
+ activesupport (= 7.2.2.1)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ zeitwerk (~> 2.6)
17
+ actionmailbox (7.2.2.1)
18
+ actionpack (= 7.2.2.1)
19
+ activejob (= 7.2.2.1)
20
+ activerecord (= 7.2.2.1)
21
+ activestorage (= 7.2.2.1)
22
+ activesupport (= 7.2.2.1)
23
+ mail (>= 2.8.0)
24
+ actionmailer (7.2.2.1)
25
+ actionpack (= 7.2.2.1)
26
+ actionview (= 7.2.2.1)
27
+ activejob (= 7.2.2.1)
28
+ activesupport (= 7.2.2.1)
29
+ mail (>= 2.8.0)
30
+ rails-dom-testing (~> 2.2)
31
+ actionpack (7.2.2.1)
32
+ actionview (= 7.2.2.1)
33
+ activesupport (= 7.2.2.1)
34
+ nokogiri (>= 1.8.5)
35
+ racc
36
+ rack (>= 2.2.4, < 3.2)
37
+ rack-session (>= 1.0.1)
38
+ rack-test (>= 0.6.3)
39
+ rails-dom-testing (~> 2.2)
40
+ rails-html-sanitizer (~> 1.6)
41
+ useragent (~> 0.16)
42
+ actiontext (7.2.2.1)
43
+ actionpack (= 7.2.2.1)
44
+ activerecord (= 7.2.2.1)
45
+ activestorage (= 7.2.2.1)
46
+ activesupport (= 7.2.2.1)
47
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (7.2.2.1)
50
+ activesupport (= 7.2.2.1)
51
+ builder (~> 3.1)
52
+ erubi (~> 1.11)
53
+ rails-dom-testing (~> 2.2)
54
+ rails-html-sanitizer (~> 1.6)
55
+ activejob (7.2.2.1)
56
+ activesupport (= 7.2.2.1)
57
+ globalid (>= 0.3.6)
58
+ activemodel (7.2.2.1)
59
+ activesupport (= 7.2.2.1)
60
+ activerecord (7.2.2.1)
61
+ activemodel (= 7.2.2.1)
62
+ activesupport (= 7.2.2.1)
63
+ timeout (>= 0.4.0)
64
+ activestorage (7.2.2.1)
65
+ actionpack (= 7.2.2.1)
66
+ activejob (= 7.2.2.1)
67
+ activerecord (= 7.2.2.1)
68
+ activesupport (= 7.2.2.1)
69
+ marcel (~> 1.0)
70
+ activesupport (7.2.2.1)
71
+ base64
72
+ benchmark (>= 0.3)
73
+ bigdecimal
74
+ concurrent-ruby (~> 1.0, >= 1.3.1)
75
+ connection_pool (>= 2.2.5)
76
+ drb
77
+ i18n (>= 1.6, < 2)
78
+ logger (>= 1.4.2)
79
+ minitest (>= 5.1)
80
+ securerandom (>= 0.3)
81
+ tzinfo (~> 2.0, >= 2.0.5)
82
+ amazing_print (1.7.2)
83
+ appraisal (2.5.0)
84
+ bundler
85
+ rake
86
+ thor (>= 0.14.0)
87
+ ast (2.4.3)
88
+ base64 (0.2.0)
89
+ benchmark (0.4.0)
90
+ bigdecimal (3.1.9)
91
+ builder (3.3.0)
92
+ byebug (12.0.0)
93
+ concurrent-ruby (1.3.5)
94
+ connection_pool (2.5.3)
95
+ crass (1.0.6)
96
+ date (3.4.1)
97
+ drb (2.2.1)
98
+ erubi (1.13.1)
99
+ globalid (1.2.1)
100
+ activesupport (>= 6.1)
101
+ i18n (1.14.7)
102
+ concurrent-ruby (~> 1.0)
103
+ io-console (0.8.0)
104
+ irb (1.15.2)
105
+ pp (>= 0.6.0)
106
+ rdoc (>= 4.0.0)
107
+ reline (>= 0.4.2)
108
+ json (2.11.3)
109
+ language_server-protocol (3.17.0.4)
110
+ lint_roller (1.1.0)
111
+ logger (1.7.0)
112
+ loofah (2.24.0)
113
+ crass (~> 1.0.2)
114
+ nokogiri (>= 1.12.0)
115
+ mail (2.8.1)
116
+ mini_mime (>= 0.1.1)
117
+ net-imap
118
+ net-pop
119
+ net-smtp
120
+ marcel (1.0.4)
121
+ mini_mime (1.1.5)
122
+ minitest (5.25.5)
123
+ net-imap (0.5.8)
124
+ date
125
+ net-protocol
126
+ net-pop (0.1.2)
127
+ net-protocol
128
+ net-protocol (0.2.2)
129
+ timeout
130
+ net-smtp (0.5.1)
131
+ net-protocol
132
+ niceql (0.6.1)
133
+ nio4r (2.7.4)
134
+ nokogiri (1.18.8-x86_64-linux-gnu)
135
+ racc (~> 1.4)
136
+ parallel (1.27.0)
137
+ parser (3.3.8.0)
138
+ ast (~> 2.4.1)
139
+ racc
140
+ pp (0.6.2)
141
+ prettyprint
142
+ prettyprint (0.2.0)
143
+ prism (1.4.0)
144
+ psych (5.2.4)
145
+ date
146
+ stringio
147
+ racc (1.8.1)
148
+ rack (3.1.13)
149
+ rack-session (2.1.0)
150
+ base64 (>= 0.1.0)
151
+ rack (>= 3.0.0)
152
+ rack-test (2.2.0)
153
+ rack (>= 1.3)
154
+ rackup (2.2.1)
155
+ rack (>= 3)
156
+ rails (7.2.2.1)
157
+ actioncable (= 7.2.2.1)
158
+ actionmailbox (= 7.2.2.1)
159
+ actionmailer (= 7.2.2.1)
160
+ actionpack (= 7.2.2.1)
161
+ actiontext (= 7.2.2.1)
162
+ actionview (= 7.2.2.1)
163
+ activejob (= 7.2.2.1)
164
+ activemodel (= 7.2.2.1)
165
+ activerecord (= 7.2.2.1)
166
+ activestorage (= 7.2.2.1)
167
+ activesupport (= 7.2.2.1)
168
+ bundler (>= 1.15.0)
169
+ railties (= 7.2.2.1)
170
+ rails-dom-testing (2.2.0)
171
+ activesupport (>= 5.0.0)
172
+ minitest
173
+ nokogiri (>= 1.6)
174
+ rails-html-sanitizer (1.6.2)
175
+ loofah (~> 2.21)
176
+ 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)
177
+ rails-i18n (7.0.10)
178
+ i18n (>= 0.7, < 2)
179
+ railties (>= 6.0.0, < 8)
180
+ rails_sql_prettifier (7.0.7)
181
+ activerecord (>= 7)
182
+ niceql (~> 0.6)
183
+ railties (7.2.2.1)
184
+ actionpack (= 7.2.2.1)
185
+ activesupport (= 7.2.2.1)
186
+ irb (~> 1.13)
187
+ rackup (>= 1.0.0)
188
+ rake (>= 12.2)
189
+ thor (~> 1.0, >= 1.2.2)
190
+ zeitwerk (~> 2.6)
191
+ rainbow (3.1.1)
192
+ rake (13.2.1)
193
+ rdoc (6.13.1)
194
+ psych (>= 4.0.0)
195
+ regexp_parser (2.10.0)
196
+ reline (0.6.1)
197
+ io-console (~> 0.5)
198
+ rubocop (1.75.4)
199
+ json (~> 2.3)
200
+ language_server-protocol (~> 3.17.0.2)
201
+ lint_roller (~> 1.1.0)
202
+ parallel (~> 1.10)
203
+ parser (>= 3.3.0.2)
204
+ rainbow (>= 2.2.2, < 4.0)
205
+ regexp_parser (>= 2.9.3, < 3.0)
206
+ rubocop-ast (>= 1.44.0, < 2.0)
207
+ ruby-progressbar (~> 1.7)
208
+ unicode-display_width (>= 2.4.0, < 4.0)
209
+ rubocop-ast (1.44.1)
210
+ parser (>= 3.3.7.2)
211
+ prism (~> 1.4)
212
+ rubocop-shopify (2.17.0)
213
+ rubocop (~> 1.62)
214
+ ruby-progressbar (1.13.0)
215
+ securerandom (0.4.1)
216
+ sqlite3 (2.6.0-x86_64-linux-gnu)
217
+ stringio (3.1.7)
218
+ stubberry (0.3.0)
219
+ thor (1.3.2)
220
+ timeout (0.4.3)
221
+ tzinfo (2.0.6)
222
+ concurrent-ruby (~> 1.0)
223
+ unicode-display_width (3.1.4)
224
+ unicode-emoji (~> 4.0, >= 4.0.4)
225
+ unicode-emoji (4.0.4)
226
+ useragent (0.16.11)
227
+ websocket-driver (0.7.7)
228
+ base64
229
+ websocket-extensions (>= 0.1.0)
230
+ websocket-extensions (0.1.5)
231
+ zeitwerk (2.7.2)
232
+
233
+ PLATFORMS
234
+ x86_64-linux-gnu
235
+
236
+ DEPENDENCIES
237
+ amazing_print
238
+ appraisal
239
+ bundler (>= 1.11)
240
+ byebug
241
+ minitest (~> 5.16)
242
+ nested_select!
243
+ rails (~> 7.2.0)
244
+ rails-i18n (>= 4)
245
+ rails_sql_prettifier
246
+ rake (~> 13.0)
247
+ rubocop (~> 1.21)
248
+ rubocop-shopify
249
+ sqlite3
250
+ stubberry
251
+
252
+ BUNDLED WITH
253
+ 2.5.11
@@ -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", ">= 8"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,254 @@
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 (8.0.2)
12
+ actionpack (= 8.0.2)
13
+ activesupport (= 8.0.2)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ zeitwerk (~> 2.6)
17
+ actionmailbox (8.0.2)
18
+ actionpack (= 8.0.2)
19
+ activejob (= 8.0.2)
20
+ activerecord (= 8.0.2)
21
+ activestorage (= 8.0.2)
22
+ activesupport (= 8.0.2)
23
+ mail (>= 2.8.0)
24
+ actionmailer (8.0.2)
25
+ actionpack (= 8.0.2)
26
+ actionview (= 8.0.2)
27
+ activejob (= 8.0.2)
28
+ activesupport (= 8.0.2)
29
+ mail (>= 2.8.0)
30
+ rails-dom-testing (~> 2.2)
31
+ actionpack (8.0.2)
32
+ actionview (= 8.0.2)
33
+ activesupport (= 8.0.2)
34
+ nokogiri (>= 1.8.5)
35
+ rack (>= 2.2.4)
36
+ rack-session (>= 1.0.1)
37
+ rack-test (>= 0.6.3)
38
+ rails-dom-testing (~> 2.2)
39
+ rails-html-sanitizer (~> 1.6)
40
+ useragent (~> 0.16)
41
+ actiontext (8.0.2)
42
+ actionpack (= 8.0.2)
43
+ activerecord (= 8.0.2)
44
+ activestorage (= 8.0.2)
45
+ activesupport (= 8.0.2)
46
+ globalid (>= 0.6.0)
47
+ nokogiri (>= 1.8.5)
48
+ actionview (8.0.2)
49
+ activesupport (= 8.0.2)
50
+ builder (~> 3.1)
51
+ erubi (~> 1.11)
52
+ rails-dom-testing (~> 2.2)
53
+ rails-html-sanitizer (~> 1.6)
54
+ activejob (8.0.2)
55
+ activesupport (= 8.0.2)
56
+ globalid (>= 0.3.6)
57
+ activemodel (8.0.2)
58
+ activesupport (= 8.0.2)
59
+ activerecord (8.0.2)
60
+ activemodel (= 8.0.2)
61
+ activesupport (= 8.0.2)
62
+ timeout (>= 0.4.0)
63
+ activestorage (8.0.2)
64
+ actionpack (= 8.0.2)
65
+ activejob (= 8.0.2)
66
+ activerecord (= 8.0.2)
67
+ activesupport (= 8.0.2)
68
+ marcel (~> 1.0)
69
+ activesupport (8.0.2)
70
+ base64
71
+ benchmark (>= 0.3)
72
+ bigdecimal
73
+ concurrent-ruby (~> 1.0, >= 1.3.1)
74
+ connection_pool (>= 2.2.5)
75
+ drb
76
+ i18n (>= 1.6, < 2)
77
+ logger (>= 1.4.2)
78
+ minitest (>= 5.1)
79
+ securerandom (>= 0.3)
80
+ tzinfo (~> 2.0, >= 2.0.5)
81
+ uri (>= 0.13.1)
82
+ amazing_print (1.7.2)
83
+ appraisal (2.5.0)
84
+ bundler
85
+ rake
86
+ thor (>= 0.14.0)
87
+ ast (2.4.3)
88
+ base64 (0.2.0)
89
+ benchmark (0.4.0)
90
+ bigdecimal (3.1.9)
91
+ builder (3.3.0)
92
+ byebug (12.0.0)
93
+ concurrent-ruby (1.3.5)
94
+ connection_pool (2.5.3)
95
+ crass (1.0.6)
96
+ date (3.4.1)
97
+ drb (2.2.1)
98
+ erubi (1.13.1)
99
+ globalid (1.2.1)
100
+ activesupport (>= 6.1)
101
+ i18n (1.14.7)
102
+ concurrent-ruby (~> 1.0)
103
+ io-console (0.8.0)
104
+ irb (1.15.2)
105
+ pp (>= 0.6.0)
106
+ rdoc (>= 4.0.0)
107
+ reline (>= 0.4.2)
108
+ json (2.11.3)
109
+ language_server-protocol (3.17.0.4)
110
+ lint_roller (1.1.0)
111
+ logger (1.7.0)
112
+ loofah (2.24.0)
113
+ crass (~> 1.0.2)
114
+ nokogiri (>= 1.12.0)
115
+ mail (2.8.1)
116
+ mini_mime (>= 0.1.1)
117
+ net-imap
118
+ net-pop
119
+ net-smtp
120
+ marcel (1.0.4)
121
+ mini_mime (1.1.5)
122
+ minitest (5.25.5)
123
+ net-imap (0.5.8)
124
+ date
125
+ net-protocol
126
+ net-pop (0.1.2)
127
+ net-protocol
128
+ net-protocol (0.2.2)
129
+ timeout
130
+ net-smtp (0.5.1)
131
+ net-protocol
132
+ niceql (0.6.1)
133
+ nio4r (2.7.4)
134
+ nokogiri (1.18.8-x86_64-linux-gnu)
135
+ racc (~> 1.4)
136
+ parallel (1.27.0)
137
+ parser (3.3.8.0)
138
+ ast (~> 2.4.1)
139
+ racc
140
+ pp (0.6.2)
141
+ prettyprint
142
+ prettyprint (0.2.0)
143
+ prism (1.4.0)
144
+ psych (5.2.4)
145
+ date
146
+ stringio
147
+ racc (1.8.1)
148
+ rack (3.1.13)
149
+ rack-session (2.1.0)
150
+ base64 (>= 0.1.0)
151
+ rack (>= 3.0.0)
152
+ rack-test (2.2.0)
153
+ rack (>= 1.3)
154
+ rackup (2.2.1)
155
+ rack (>= 3)
156
+ rails (8.0.2)
157
+ actioncable (= 8.0.2)
158
+ actionmailbox (= 8.0.2)
159
+ actionmailer (= 8.0.2)
160
+ actionpack (= 8.0.2)
161
+ actiontext (= 8.0.2)
162
+ actionview (= 8.0.2)
163
+ activejob (= 8.0.2)
164
+ activemodel (= 8.0.2)
165
+ activerecord (= 8.0.2)
166
+ activestorage (= 8.0.2)
167
+ activesupport (= 8.0.2)
168
+ bundler (>= 1.15.0)
169
+ railties (= 8.0.2)
170
+ rails-dom-testing (2.2.0)
171
+ activesupport (>= 5.0.0)
172
+ minitest
173
+ nokogiri (>= 1.6)
174
+ rails-html-sanitizer (1.6.2)
175
+ loofah (~> 2.21)
176
+ 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)
177
+ rails-i18n (8.0.1)
178
+ i18n (>= 0.7, < 2)
179
+ railties (>= 8.0.0, < 9)
180
+ rails_sql_prettifier (7.0.7)
181
+ activerecord (>= 7)
182
+ niceql (~> 0.6)
183
+ railties (8.0.2)
184
+ actionpack (= 8.0.2)
185
+ activesupport (= 8.0.2)
186
+ irb (~> 1.13)
187
+ rackup (>= 1.0.0)
188
+ rake (>= 12.2)
189
+ thor (~> 1.0, >= 1.2.2)
190
+ zeitwerk (~> 2.6)
191
+ rainbow (3.1.1)
192
+ rake (13.2.1)
193
+ rdoc (6.13.1)
194
+ psych (>= 4.0.0)
195
+ regexp_parser (2.10.0)
196
+ reline (0.6.1)
197
+ io-console (~> 0.5)
198
+ rubocop (1.75.4)
199
+ json (~> 2.3)
200
+ language_server-protocol (~> 3.17.0.2)
201
+ lint_roller (~> 1.1.0)
202
+ parallel (~> 1.10)
203
+ parser (>= 3.3.0.2)
204
+ rainbow (>= 2.2.2, < 4.0)
205
+ regexp_parser (>= 2.9.3, < 3.0)
206
+ rubocop-ast (>= 1.44.0, < 2.0)
207
+ ruby-progressbar (~> 1.7)
208
+ unicode-display_width (>= 2.4.0, < 4.0)
209
+ rubocop-ast (1.44.1)
210
+ parser (>= 3.3.7.2)
211
+ prism (~> 1.4)
212
+ rubocop-shopify (2.17.0)
213
+ rubocop (~> 1.62)
214
+ ruby-progressbar (1.13.0)
215
+ securerandom (0.4.1)
216
+ sqlite3 (2.6.0-x86_64-linux-gnu)
217
+ stringio (3.1.7)
218
+ stubberry (0.3.0)
219
+ thor (1.3.2)
220
+ timeout (0.4.3)
221
+ tzinfo (2.0.6)
222
+ concurrent-ruby (~> 1.0)
223
+ unicode-display_width (3.1.4)
224
+ unicode-emoji (~> 4.0, >= 4.0.4)
225
+ unicode-emoji (4.0.4)
226
+ uri (1.0.3)
227
+ useragent (0.16.11)
228
+ websocket-driver (0.7.7)
229
+ base64
230
+ websocket-extensions (>= 0.1.0)
231
+ websocket-extensions (0.1.5)
232
+ zeitwerk (2.7.2)
233
+
234
+ PLATFORMS
235
+ x86_64-linux-gnu
236
+
237
+ DEPENDENCIES
238
+ amazing_print
239
+ appraisal
240
+ bundler (>= 1.11)
241
+ byebug
242
+ minitest (~> 5.16)
243
+ nested_select!
244
+ rails (>= 8)
245
+ rails-i18n (>= 4)
246
+ rails_sql_prettifier
247
+ rake (~> 13.0)
248
+ rubocop (~> 1.21)
249
+ rubocop-shopify
250
+ sqlite3
251
+ stubberry
252
+
253
+ BUNDLED WITH
254
+ 2.5.11
@@ -8,7 +8,7 @@ module NestedSelect
8
8
  scope: through_scope,
9
9
  associate_by_default: false,
10
10
  ).tap do
11
- _1.apply_nested_select_values(nested_select_values.grep(Hash))
11
+ _1.apply_nested_select_values(nested_select_values&.grep(Hash))
12
12
  end.loaders
13
13
  end
14
14
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NestedSelect
4
- VERSION = "0.4.2"
4
+ VERSION = "0.4.4"
5
5
  end
data/lib/nested_select.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+ require "logger" # Fix concurrent-ruby removing logger dependency which Rails itself does not have
2
3
  require_relative "nested_select/version"
3
4
 
4
5
  module NestedSelect
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nested_select
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - alekseyl
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-01 00:00:00.000000000 Z
11
+ date: 2025-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -200,8 +200,6 @@ executables: []
200
200
  extensions: []
201
201
  extra_rdoc_files: []
202
202
  files:
203
- - ".idea/.gitignore"
204
- - ".idea/inspectionProfiles/profiles_settings.xml"
205
203
  - ".rubocop.yml"
206
204
  - ABOUT_NESTED_SELECT.md
207
205
  - Appraisals
@@ -213,6 +211,14 @@ files:
213
211
  - README.md
214
212
  - Rakefile
215
213
  - docker-compose.yml
214
+ - gemfiles/rails_7.0.gemfile
215
+ - gemfiles/rails_7.0.gemfile.lock
216
+ - gemfiles/rails_7.1.gemfile
217
+ - gemfiles/rails_7.1.gemfile.lock
218
+ - gemfiles/rails_7.2.gemfile
219
+ - gemfiles/rails_7.2.gemfile.lock
220
+ - gemfiles/rails_8.gemfile
221
+ - gemfiles/rails_8.gemfile.lock
216
222
  - lib/nested_select.rb
217
223
  - lib/nested_select/deep_merger.rb
218
224
  - lib/nested_select/preloader.rb
data/.idea/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- # Default ignored files
2
- /shelf/
3
- /workspace.xml
4
- # Editor-based HTTP Client requests
5
- /httpRequests/
6
- # Datasource local storage ignored files
7
- /dataSources/
8
- /dataSources.local.xml
@@ -1,5 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <settings>
3
- <option name="PROJECT_PROFILE" />
4
- </settings>
5
- </component>