insertion 0.1.0 → 0.2.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: b1ddb71d7011145dc3a725a0eae1ceeccd8725a80446dc378e7cc3fcfdef0418
4
- data.tar.gz: a1c8028e6816d6f9b10b10bfd2ad002c390800db37bc24f62387ca20ecf98c4d
3
+ metadata.gz: 2981c891b13e0bd091f5e5e61b3db3f82ed876b8f8ce374f2d2487d3501e6fe4
4
+ data.tar.gz: 9416438fcc3745f3144e2aaed54fde68eeb38b188819c49ebf10432b21b62213
5
5
  SHA512:
6
- metadata.gz: c8e343d8434780b3ab3d46a47d5e00995d2660f91fe8fbc4a32ba814021c87e4efa42e098f4ca6971f425ba4b8c7d7187a534c4fe7b3336d63381882a9e6b24e
7
- data.tar.gz: 1839465cf1eef7c408773e5e7be44b6b5f139b71adaab3f05ed480d9d0fed11ae947fdf8185e0adb3ee8ef24aed3c53ce2902088ff8cb8e1183df5dcbcb6cc76
6
+ metadata.gz: 23218e2be2ff2521fc7d0180497618cf5f17a3a8c47865f653dabe6f01a425ec732d1b0f761fc635274c5d4e67d0613f17d735c8d6bfe36457d3aa518d2926eb
7
+ data.tar.gz: e3994a9f3c2943682661e09a19c4295500308ce0421271c1d9a38cbe35ac3bc560c79ecc1293a8b4ea9c601d66ea31aa9d146a3ce7a6cd365fbb1a8e288743d6
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.8
data/Appraisals ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise 'rails7' do
4
+ gem 'rails', '~> 7.2.0'
5
+ end
6
+
7
+ appraise 'rails8' do
8
+ gem 'rails', '~> 8.0.1'
9
+ end
data/README.md CHANGED
@@ -1,34 +1,111 @@
1
1
  # Insertion
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
3
+ PORO fixtures for Rails. A simple, fast way to create test data using Plain Old Ruby Objects.
4
4
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/insertion`. To experiment with that code, run `bin/console` for an interactive prompt.
5
+ ## Why Insertion?
6
+
7
+ - **Fast**: Uses `insert!` to write directly to the database, bypassing model callbacks and validations
8
+ - **Simple**: Plain Ruby classes with no DSL to learn
9
+ - **Flexible**: Override any attribute at call time
6
10
 
7
11
  ## Installation
8
12
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
13
+ Add to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'insertion'
17
+ ```
10
18
 
11
- Install the gem and add to the application's Gemfile by executing:
19
+ Then run:
12
20
 
13
21
  ```bash
14
- bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
22
+ bundle install
15
23
  ```
16
24
 
17
- If bundler is not being used to manage dependencies, install the gem by executing:
25
+ For convenience, include the Insertion methods in your test setup. For RSpec, add this to your `spec_helper.rb` or `test_helper.rb`:
18
26
 
19
- ```bash
20
- gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
27
+ ```ruby
28
+ module ActiveSupport
29
+ class TestCase
30
+ include Insertion
31
+ # ...
32
+ end
33
+ end
21
34
  ```
22
35
 
36
+ Then you can simply call `insert` and `build` in your tests. But of course, you can also call them directly via `Insertion.insert` and `Insertion.build`.
37
+
23
38
  ## Usage
24
39
 
25
- TODO: Write usage instructions here
40
+ ### Basic Usage
41
+
42
+ Create records directly in your tests:
43
+
44
+ ```ruby
45
+ user = insert(:user, name: 'Joel', email: 'joel@example.com')
46
+ ```
47
+
48
+ Build a record without persisting (useful for getting default values):
49
+
50
+ ```ruby
51
+ user = build(:user, name: 'Joel')
52
+ ```
53
+
54
+ ### Custom Insert Classes
26
55
 
27
- ## Development
56
+ For more control, create custom Insert classes in `app/inserts/`:
57
+
58
+ ```ruby
59
+ # app/inserts/user_insert.rb
60
+ class UserInsert < Insertion::Insert
61
+ def attributes
62
+ {
63
+ name: 'Default Name',
64
+ email: "user#{SecureRandom.hex(4)}@example.com",
65
+ **super
66
+ }
67
+ end
68
+
69
+ def after_insert(record)
70
+ # Run code after the record is inserted
71
+ end
72
+
73
+ def after_build(record)
74
+ # Run code after the record is built
75
+ end
76
+ end
77
+ ```
78
+
79
+ Then use it:
80
+
81
+ ```ruby
82
+ # Uses defaults from UserInsert
83
+ user = insert(:user)
84
+
85
+ # Override specific attributes
86
+ user = insert(:user, name: 'Custom Name')
87
+ ```
88
+
89
+ ### Nested Inserts
90
+
91
+ Create associated records within your Insert classes:
92
+
93
+ ```ruby
94
+ class PostInsert < Insertion::Insert
95
+ def attributes
96
+ {
97
+ title: 'Default Title',
98
+ user_id: insert(:user).id,
99
+ **super
100
+ }
101
+ end
102
+ end
103
+ ```
28
104
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
105
+ ## Requirements
30
106
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
107
+ - Ruby >= 3.3.0
108
+ - Rails >= 7.2.0
32
109
 
33
110
  ## Contributing
34
111
 
data/Rakefile CHANGED
@@ -1,12 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'bundler/gem_tasks'
4
- require 'minitest/test_task'
5
-
6
- Minitest::TestTask.create
3
+ require 'bundler/setup'
7
4
 
8
- require 'rubocop/rake_task'
5
+ APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
6
+ load 'rails/tasks/engine.rake'
9
7
 
10
- RuboCop::RakeTask.new
11
-
12
- task default: %i[test rubocop]
8
+ require 'bundler/gem_tasks'
@@ -0,0 +1,23 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "amazing_print"
6
+ gem "debug"
7
+ gem "web-console", group: :development
8
+ gem "rubocop-disable_syntax", require: false
9
+ gem "rubocop-minitest", require: false
10
+ gem "rubocop-packaging", require: false
11
+ gem "rubocop-performance", require: false
12
+ gem "rubocop-rails", require: false
13
+ gem "rubocop-rake", require: false
14
+ gem "capybara"
15
+ gem "maxitest"
16
+ gem "minitest", "~> 5.0"
17
+ gem "minitest-focus"
18
+ gem "minitest-spec-rails"
19
+ gem "appraisal"
20
+ gem "sqlite3"
21
+ gem "rails", "~> 7.2.0"
22
+
23
+ gemspec path: "../"
@@ -0,0 +1,454 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ insertion (0.1.0)
5
+ rails (>= 7.2.0, < 9.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.2.3)
11
+ actionpack (= 7.2.3)
12
+ activesupport (= 7.2.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (7.2.3)
17
+ actionpack (= 7.2.3)
18
+ activejob (= 7.2.3)
19
+ activerecord (= 7.2.3)
20
+ activestorage (= 7.2.3)
21
+ activesupport (= 7.2.3)
22
+ mail (>= 2.8.0)
23
+ actionmailer (7.2.3)
24
+ actionpack (= 7.2.3)
25
+ actionview (= 7.2.3)
26
+ activejob (= 7.2.3)
27
+ activesupport (= 7.2.3)
28
+ mail (>= 2.8.0)
29
+ rails-dom-testing (~> 2.2)
30
+ actionpack (7.2.3)
31
+ actionview (= 7.2.3)
32
+ activesupport (= 7.2.3)
33
+ cgi
34
+ nokogiri (>= 1.8.5)
35
+ racc
36
+ rack (>= 2.2.4, < 3.3)
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.3)
43
+ actionpack (= 7.2.3)
44
+ activerecord (= 7.2.3)
45
+ activestorage (= 7.2.3)
46
+ activesupport (= 7.2.3)
47
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (7.2.3)
50
+ activesupport (= 7.2.3)
51
+ builder (~> 3.1)
52
+ cgi
53
+ erubi (~> 1.11)
54
+ rails-dom-testing (~> 2.2)
55
+ rails-html-sanitizer (~> 1.6)
56
+ activejob (7.2.3)
57
+ activesupport (= 7.2.3)
58
+ globalid (>= 0.3.6)
59
+ activemodel (7.2.3)
60
+ activesupport (= 7.2.3)
61
+ activerecord (7.2.3)
62
+ activemodel (= 7.2.3)
63
+ activesupport (= 7.2.3)
64
+ timeout (>= 0.4.0)
65
+ activestorage (7.2.3)
66
+ actionpack (= 7.2.3)
67
+ activejob (= 7.2.3)
68
+ activerecord (= 7.2.3)
69
+ activesupport (= 7.2.3)
70
+ marcel (~> 1.0)
71
+ activesupport (7.2.3)
72
+ base64
73
+ benchmark (>= 0.3)
74
+ bigdecimal
75
+ concurrent-ruby (~> 1.0, >= 1.3.1)
76
+ connection_pool (>= 2.2.5)
77
+ drb
78
+ i18n (>= 1.6, < 2)
79
+ logger (>= 1.4.2)
80
+ minitest (>= 5.1)
81
+ securerandom (>= 0.3)
82
+ tzinfo (~> 2.0, >= 2.0.5)
83
+ addressable (2.8.8)
84
+ public_suffix (>= 2.0.2, < 8.0)
85
+ amazing_print (2.0.0)
86
+ appraisal (2.5.0)
87
+ bundler
88
+ rake
89
+ thor (>= 0.14.0)
90
+ ast (2.4.3)
91
+ base64 (0.3.0)
92
+ benchmark (0.5.0)
93
+ bigdecimal (4.0.1)
94
+ bindex (0.8.1)
95
+ builder (3.3.0)
96
+ capybara (3.40.0)
97
+ addressable
98
+ matrix
99
+ mini_mime (>= 0.1.3)
100
+ nokogiri (~> 1.11)
101
+ rack (>= 1.6.0)
102
+ rack-test (>= 0.6.3)
103
+ regexp_parser (>= 1.5, < 3.0)
104
+ xpath (~> 3.2)
105
+ cgi (0.5.1)
106
+ concurrent-ruby (1.3.6)
107
+ connection_pool (3.0.2)
108
+ crass (1.0.6)
109
+ date (3.5.1)
110
+ debug (1.11.1)
111
+ irb (~> 1.10)
112
+ reline (>= 0.3.8)
113
+ drb (2.2.3)
114
+ erb (6.0.1)
115
+ erubi (1.13.1)
116
+ globalid (1.3.0)
117
+ activesupport (>= 6.1)
118
+ i18n (1.14.8)
119
+ concurrent-ruby (~> 1.0)
120
+ io-console (0.8.2)
121
+ irb (1.16.0)
122
+ pp (>= 0.6.0)
123
+ rdoc (>= 4.0.0)
124
+ reline (>= 0.4.2)
125
+ json (2.18.0)
126
+ language_server-protocol (3.17.0.5)
127
+ lint_roller (1.1.0)
128
+ logger (1.7.0)
129
+ loofah (2.25.0)
130
+ crass (~> 1.0.2)
131
+ nokogiri (>= 1.12.0)
132
+ mail (2.9.0)
133
+ logger
134
+ mini_mime (>= 0.1.1)
135
+ net-imap
136
+ net-pop
137
+ net-smtp
138
+ marcel (1.1.0)
139
+ matrix (0.4.3)
140
+ maxitest (6.2.0)
141
+ minitest (>= 5.20.0, < 5.28.0)
142
+ mini_mime (1.1.5)
143
+ minitest (5.27.0)
144
+ minitest-focus (1.4.1)
145
+ minitest (> 5.0)
146
+ minitest-spec-rails (7.4.1)
147
+ minitest (>= 5.0)
148
+ railties (>= 4.1)
149
+ net-imap (0.6.2)
150
+ date
151
+ net-protocol
152
+ net-pop (0.1.2)
153
+ net-protocol
154
+ net-protocol (0.2.2)
155
+ timeout
156
+ net-smtp (0.5.1)
157
+ net-protocol
158
+ nio4r (2.7.5)
159
+ nokogiri (1.19.0-aarch64-linux-gnu)
160
+ racc (~> 1.4)
161
+ nokogiri (1.19.0-aarch64-linux-musl)
162
+ racc (~> 1.4)
163
+ nokogiri (1.19.0-arm-linux-gnu)
164
+ racc (~> 1.4)
165
+ nokogiri (1.19.0-arm-linux-musl)
166
+ racc (~> 1.4)
167
+ nokogiri (1.19.0-arm64-darwin)
168
+ racc (~> 1.4)
169
+ nokogiri (1.19.0-x86_64-darwin)
170
+ racc (~> 1.4)
171
+ nokogiri (1.19.0-x86_64-linux-gnu)
172
+ racc (~> 1.4)
173
+ nokogiri (1.19.0-x86_64-linux-musl)
174
+ racc (~> 1.4)
175
+ parallel (1.27.0)
176
+ parser (3.3.10.1)
177
+ ast (~> 2.4.1)
178
+ racc
179
+ pp (0.6.3)
180
+ prettyprint
181
+ prettyprint (0.2.0)
182
+ prism (1.8.0)
183
+ psych (5.3.1)
184
+ date
185
+ stringio
186
+ public_suffix (7.0.2)
187
+ racc (1.8.1)
188
+ rack (3.2.4)
189
+ rack-session (2.1.1)
190
+ base64 (>= 0.1.0)
191
+ rack (>= 3.0.0)
192
+ rack-test (2.2.0)
193
+ rack (>= 1.3)
194
+ rackup (2.3.1)
195
+ rack (>= 3)
196
+ rails (7.2.3)
197
+ actioncable (= 7.2.3)
198
+ actionmailbox (= 7.2.3)
199
+ actionmailer (= 7.2.3)
200
+ actionpack (= 7.2.3)
201
+ actiontext (= 7.2.3)
202
+ actionview (= 7.2.3)
203
+ activejob (= 7.2.3)
204
+ activemodel (= 7.2.3)
205
+ activerecord (= 7.2.3)
206
+ activestorage (= 7.2.3)
207
+ activesupport (= 7.2.3)
208
+ bundler (>= 1.15.0)
209
+ railties (= 7.2.3)
210
+ rails-dom-testing (2.3.0)
211
+ activesupport (>= 5.0.0)
212
+ minitest
213
+ nokogiri (>= 1.6)
214
+ rails-html-sanitizer (1.6.2)
215
+ loofah (~> 2.21)
216
+ 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)
217
+ railties (7.2.3)
218
+ actionpack (= 7.2.3)
219
+ activesupport (= 7.2.3)
220
+ cgi
221
+ irb (~> 1.13)
222
+ rackup (>= 1.0.0)
223
+ rake (>= 12.2)
224
+ thor (~> 1.0, >= 1.2.2)
225
+ tsort (>= 0.2)
226
+ zeitwerk (~> 2.6)
227
+ rainbow (3.1.1)
228
+ rake (13.3.1)
229
+ rdoc (7.1.0)
230
+ erb
231
+ psych (>= 4.0.0)
232
+ tsort
233
+ regexp_parser (2.11.3)
234
+ reline (0.6.3)
235
+ io-console (~> 0.5)
236
+ rubocop (1.82.1)
237
+ json (~> 2.3)
238
+ language_server-protocol (~> 3.17.0.2)
239
+ lint_roller (~> 1.1.0)
240
+ parallel (~> 1.10)
241
+ parser (>= 3.3.0.2)
242
+ rainbow (>= 2.2.2, < 4.0)
243
+ regexp_parser (>= 2.9.3, < 3.0)
244
+ rubocop-ast (>= 1.48.0, < 2.0)
245
+ ruby-progressbar (~> 1.7)
246
+ unicode-display_width (>= 2.4.0, < 4.0)
247
+ rubocop-ast (1.49.0)
248
+ parser (>= 3.3.7.2)
249
+ prism (~> 1.7)
250
+ rubocop-disable_syntax (0.2.0)
251
+ lint_roller
252
+ rubocop (>= 1.72.0)
253
+ rubocop-minitest (0.38.2)
254
+ lint_roller (~> 1.1)
255
+ rubocop (>= 1.75.0, < 2.0)
256
+ rubocop-ast (>= 1.38.0, < 2.0)
257
+ rubocop-packaging (0.6.0)
258
+ lint_roller (~> 1.1.0)
259
+ rubocop (>= 1.72.1, < 2.0)
260
+ rubocop-performance (1.26.1)
261
+ lint_roller (~> 1.1)
262
+ rubocop (>= 1.75.0, < 2.0)
263
+ rubocop-ast (>= 1.47.1, < 2.0)
264
+ rubocop-rails (2.34.3)
265
+ activesupport (>= 4.2.0)
266
+ lint_roller (~> 1.1)
267
+ rack (>= 1.1)
268
+ rubocop (>= 1.75.0, < 2.0)
269
+ rubocop-ast (>= 1.44.0, < 2.0)
270
+ rubocop-rake (0.7.1)
271
+ lint_roller (~> 1.1)
272
+ rubocop (>= 1.72.1)
273
+ ruby-progressbar (1.13.0)
274
+ securerandom (0.4.1)
275
+ sqlite3 (2.9.0-aarch64-linux-gnu)
276
+ sqlite3 (2.9.0-aarch64-linux-musl)
277
+ sqlite3 (2.9.0-arm-linux-gnu)
278
+ sqlite3 (2.9.0-arm-linux-musl)
279
+ sqlite3 (2.9.0-arm64-darwin)
280
+ sqlite3 (2.9.0-x86_64-darwin)
281
+ sqlite3 (2.9.0-x86_64-linux-gnu)
282
+ sqlite3 (2.9.0-x86_64-linux-musl)
283
+ stringio (3.2.0)
284
+ thor (1.5.0)
285
+ timeout (0.6.0)
286
+ tsort (0.2.0)
287
+ tzinfo (2.0.6)
288
+ concurrent-ruby (~> 1.0)
289
+ unicode-display_width (3.2.0)
290
+ unicode-emoji (~> 4.1)
291
+ unicode-emoji (4.2.0)
292
+ useragent (0.16.11)
293
+ web-console (4.2.1)
294
+ actionview (>= 6.0.0)
295
+ activemodel (>= 6.0.0)
296
+ bindex (>= 0.4.0)
297
+ railties (>= 6.0.0)
298
+ websocket-driver (0.8.0)
299
+ base64
300
+ websocket-extensions (>= 0.1.0)
301
+ websocket-extensions (0.1.5)
302
+ xpath (3.2.0)
303
+ nokogiri (~> 1.8)
304
+ zeitwerk (2.7.4)
305
+
306
+ PLATFORMS
307
+ aarch64-linux
308
+ aarch64-linux-gnu
309
+ aarch64-linux-musl
310
+ arm-linux-gnu
311
+ arm-linux-musl
312
+ arm64-darwin
313
+ x86_64-darwin
314
+ x86_64-linux
315
+ x86_64-linux-gnu
316
+ x86_64-linux-musl
317
+
318
+ DEPENDENCIES
319
+ amazing_print
320
+ appraisal
321
+ capybara
322
+ debug
323
+ insertion!
324
+ maxitest
325
+ minitest (~> 5.0)
326
+ minitest-focus
327
+ minitest-spec-rails
328
+ rails (~> 7.2.0)
329
+ rubocop-disable_syntax
330
+ rubocop-minitest
331
+ rubocop-packaging
332
+ rubocop-performance
333
+ rubocop-rails
334
+ rubocop-rake
335
+ sqlite3
336
+ web-console
337
+
338
+ CHECKSUMS
339
+ actioncable (7.2.3) sha256=e15d17b245f1dfe7cafdda4a0c6f7ba8ebaab1af33884415e09cfef4e93ad4f9
340
+ actionmailbox (7.2.3) sha256=16bbf0a7c330f2d08d52d5e3c1b03813a8ef60bfb0a48e89c0bf92b069cb4d5e
341
+ actionmailer (7.2.3) sha256=68d646b852a6d2b25d8834fc796c3dc10f76a4c7fd77b3251c3f4dd832ec8ab8
342
+ actionpack (7.2.3) sha256=2a14e4c64695777041ea7aaf498462284cadd561f009654393daf9b2de7207cf
343
+ actiontext (7.2.3) sha256=a6ffd9efb7b7b4e26029e5c88e8a2ea9aae8d6cefdfed960be139772f1a94037
344
+ actionview (7.2.3) sha256=1f427d7a41b43804d7250911535740451b9c32b6416239d87e6dab9d5948ecb2
345
+ activejob (7.2.3) sha256=e44964472de267b69e93752f088193c8ad2e56d2ef451d059dd7a53761e5ffb0
346
+ activemodel (7.2.3) sha256=bbaf66aeb93212e98ebf6ab900f8290f9a831645f0b235427f5acf0e074739db
347
+ activerecord (7.2.3) sha256=6facb7478ceb5f6baa9f0647daa50b4a3a43934997900f0011e6c667ff41a0d7
348
+ activestorage (7.2.3) sha256=4c1422bbfaa60c89e7b43cc38ade7bd3b8dc81024c48a21c1ac56814cf34ca2f
349
+ activesupport (7.2.3) sha256=5675c9770dac93e371412684249f9dc3c8cec104efd0624362a520ae685c7b10
350
+ addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
351
+ amazing_print (2.0.0) sha256=2e36aba46ac78d37ed27ca0e2056afe3583183bb5c64f157c246b267355e5d6a
352
+ appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
353
+ ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
354
+ base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
355
+ benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
356
+ bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
357
+ bindex (0.8.1) sha256=7b1ecc9dc539ed8bccfc8cb4d2732046227b09d6f37582ff12e50a5047ceb17e
358
+ builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
359
+ capybara (3.40.0) sha256=42dba720578ea1ca65fd7a41d163dd368502c191804558f6e0f71b391054aeef
360
+ cgi (0.5.1) sha256=e93fcafc69b8a934fe1e6146121fa35430efa8b4a4047c4893764067036f18e9
361
+ concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
362
+ connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
363
+ crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
364
+ date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
365
+ debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6
366
+ drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
367
+ erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
368
+ erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
369
+ globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
370
+ i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
371
+ insertion (0.1.0)
372
+ io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
373
+ irb (1.16.0) sha256=2abe56c9ac947cdcb2f150572904ba798c1e93c890c256f8429981a7675b0806
374
+ json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
375
+ language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
376
+ lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
377
+ logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
378
+ loofah (2.25.0) sha256=df5ed7ac3bac6a4ec802df3877ee5cc86d027299f8952e6243b3dac446b060e6
379
+ mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
380
+ marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
381
+ matrix (0.4.3) sha256=a0d5ab7ddcc1973ff690ab361b67f359acbb16958d1dc072b8b956a286564c5b
382
+ maxitest (6.2.0) sha256=bb66472dd3f6565e4db5246826a05ce9096958d9e26ba9a8fdcae20288be1f4f
383
+ mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
384
+ minitest (5.27.0) sha256=2d3b17f8a36fe7801c1adcffdbc38233b938eb0b4966e97a6739055a45fa77d5
385
+ minitest-focus (1.4.1) sha256=394517cbe2dcb2d992d8ffc41a3b2b6315777a4daa69239de4fefe7110dd810e
386
+ minitest-spec-rails (7.4.1) sha256=cda2638ded7cd98ab5f2bbf0eafbba9fdc4b0fc58248ad38703b12403831254f
387
+ net-imap (0.6.2) sha256=08caacad486853c61676cca0c0c47df93db02abc4a8239a8b67eb0981428acc6
388
+ net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
389
+ net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
390
+ net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
391
+ nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
392
+ nokogiri (1.19.0-aarch64-linux-gnu) sha256=11a97ecc3c0e7e5edcf395720b10860ef493b768f6aa80c539573530bc933767
393
+ nokogiri (1.19.0-aarch64-linux-musl) sha256=eb70507f5e01bc23dad9b8dbec2b36ad0e61d227b42d292835020ff754fb7ba9
394
+ nokogiri (1.19.0-arm-linux-gnu) sha256=572a259026b2c8b7c161fdb6469fa2d0edd2b61cd599db4bbda93289abefbfe5
395
+ nokogiri (1.19.0-arm-linux-musl) sha256=23ed90922f1a38aed555d3de4d058e90850c731c5b756d191b3dc8055948e73c
396
+ nokogiri (1.19.0-arm64-darwin) sha256=0811dfd936d5f6dd3f6d32ef790568bf29b2b7bead9ba68866847b33c9cf5810
397
+ nokogiri (1.19.0-x86_64-darwin) sha256=1dad56220b603a8edb9750cd95798bffa2b8dd9dd9aa47f664009ee5b43e3067
398
+ nokogiri (1.19.0-x86_64-linux-gnu) sha256=f482b95c713d60031d48c44ce14562f8d2ce31e3a9e8dd0ccb131e9e5a68b58c
399
+ nokogiri (1.19.0-x86_64-linux-musl) sha256=1c4ca6b381622420073ce6043443af1d321e8ed93cc18b08e2666e5bd02ffae4
400
+ parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
401
+ parser (3.3.10.1) sha256=06f6a725d2cd91e5e7f2b7c32ba143631e1f7c8ae2fb918fc4cebec187e6a688
402
+ pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
403
+ prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
404
+ prism (1.8.0) sha256=84453a16ef5530ea62c5f03ec16b52a459575ad4e7b9c2b360fd8ce2c39c1254
405
+ psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
406
+ public_suffix (7.0.2) sha256=9114090c8e4e7135c1fd0e7acfea33afaab38101884320c65aaa0ffb8e26a857
407
+ racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
408
+ rack (3.2.4) sha256=5d74b6f75082a643f43c1e76b419c40f0e5527fcfee1e669ac1e6b73c0ccb6f6
409
+ rack-session (2.1.1) sha256=0b6dc07dea7e4b583f58a48e8b806d4c9f1c6c9214ebc202ec94562cbea2e4e9
410
+ rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
411
+ rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
412
+ rails (7.2.3) sha256=9a9812eb131189676e64665f6883fc9c4051f412cc87ef9e3fa242a09c609bff
413
+ rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
414
+ rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
415
+ railties (7.2.3) sha256=6eb010a6bfe6f223e783f739ddfcbdb5b88b1f3a87f7739f0a0685e466250422
416
+ rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
417
+ rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
418
+ rdoc (7.1.0) sha256=494899df0706c178596ca6e1d50f1b7eb285a9b2aae715be5abd742734f17363
419
+ regexp_parser (2.11.3) sha256=ca13f381a173b7a93450e53459075c9b76a10433caadcb2f1180f2c741fc55a4
420
+ reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
421
+ rubocop (1.82.1) sha256=09f1a6a654a960eda767aebea33e47603080f8e9c9a3f019bf9b94c9cab5e273
422
+ rubocop-ast (1.49.0) sha256=49c3676d3123a0923d333e20c6c2dbaaae2d2287b475273fddee0c61da9f71fd
423
+ rubocop-disable_syntax (0.2.0) sha256=1e61645773b3fc2f74e995ec65f605f7db59437c274fdfd4f385f60bf86af73e
424
+ rubocop-minitest (0.38.2) sha256=5a9dfb5a538973d0601aa51e59637d3998bb8df81233edf1ff421504c6280068
425
+ rubocop-packaging (0.6.0) sha256=fb92bd0fb48e6f8cdb1648d2249b0cd51c2497dcc87340132d22f01edbf558a7
426
+ rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
427
+ rubocop-rails (2.34.3) sha256=10d37989024865ecda8199f311f3faca990143fbac967de943f88aca11eb9ad2
428
+ rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
429
+ ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
430
+ securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
431
+ sqlite3 (2.9.0-aarch64-linux-gnu) sha256=cfe1e0216f46d7483839719bf827129151e6c680317b99d7b8fc1597a3e13473
432
+ sqlite3 (2.9.0-aarch64-linux-musl) sha256=56a35cb2d70779afc2ac191baf2c2148242285ecfed72f9b021218c5c4917913
433
+ sqlite3 (2.9.0-arm-linux-gnu) sha256=a19a21504b0d7c8c825fbbf37b358ae316b6bd0d0134c619874060b2eef05435
434
+ sqlite3 (2.9.0-arm-linux-musl) sha256=fca5b26197c70e3363115d3faaea34d7b2ad9c7f5fa8d8312e31b64e7556ee07
435
+ sqlite3 (2.9.0-arm64-darwin) sha256=a917bd9b84285766ff3300b7d79cd583f5a067594c8c1263e6441618c04a6ed3
436
+ sqlite3 (2.9.0-x86_64-darwin) sha256=59fe51baa3cb33c36d27ce78b4ed9360cd33ccca09498c2ae63850c97c0a6026
437
+ sqlite3 (2.9.0-x86_64-linux-gnu) sha256=72fff9bd750070ba3af695511ba5f0e0a2d8a9206f84869640b3e99dfaf3d5a5
438
+ sqlite3 (2.9.0-x86_64-linux-musl) sha256=ef716ba7a66d7deb1ccc402ac3a6d7343da17fac862793b7f0be3d2917253c90
439
+ stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
440
+ thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
441
+ timeout (0.6.0) sha256=6d722ad619f96ee383a0c557ec6eb8c4ecb08af3af62098a0be5057bf00de1af
442
+ tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
443
+ tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
444
+ unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
445
+ unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
446
+ useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
447
+ web-console (4.2.1) sha256=e7bcf37a10ea2b4ec4281649d1cee461b32232d0a447e82c786e6841fd22fe20
448
+ websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
449
+ websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
450
+ xpath (3.2.0) sha256=6dfda79d91bb3b949b947ecc5919f042ef2f399b904013eb3ef6d20dd3a4082e
451
+ zeitwerk (2.7.4) sha256=2bef90f356bdafe9a6c2bd32bcd804f83a4f9b8bc27f3600fff051eb3edcec8b
452
+
453
+ BUNDLED WITH
454
+ 4.0.3
@@ -0,0 +1,23 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "amazing_print"
6
+ gem "debug"
7
+ gem "web-console", group: :development
8
+ gem "rubocop-disable_syntax", require: false
9
+ gem "rubocop-minitest", require: false
10
+ gem "rubocop-packaging", require: false
11
+ gem "rubocop-performance", require: false
12
+ gem "rubocop-rails", require: false
13
+ gem "rubocop-rake", require: false
14
+ gem "capybara"
15
+ gem "maxitest"
16
+ gem "minitest", "~> 5.0"
17
+ gem "minitest-focus"
18
+ gem "minitest-spec-rails"
19
+ gem "appraisal"
20
+ gem "sqlite3"
21
+ gem "rails", "~> 8.0.1"
22
+
23
+ gemspec path: "../"
@@ -0,0 +1,451 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ insertion (0.1.0)
5
+ rails (>= 7.2.0, < 9.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (8.0.4)
11
+ actionpack (= 8.0.4)
12
+ activesupport (= 8.0.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (8.0.4)
17
+ actionpack (= 8.0.4)
18
+ activejob (= 8.0.4)
19
+ activerecord (= 8.0.4)
20
+ activestorage (= 8.0.4)
21
+ activesupport (= 8.0.4)
22
+ mail (>= 2.8.0)
23
+ actionmailer (8.0.4)
24
+ actionpack (= 8.0.4)
25
+ actionview (= 8.0.4)
26
+ activejob (= 8.0.4)
27
+ activesupport (= 8.0.4)
28
+ mail (>= 2.8.0)
29
+ rails-dom-testing (~> 2.2)
30
+ actionpack (8.0.4)
31
+ actionview (= 8.0.4)
32
+ activesupport (= 8.0.4)
33
+ nokogiri (>= 1.8.5)
34
+ rack (>= 2.2.4)
35
+ rack-session (>= 1.0.1)
36
+ rack-test (>= 0.6.3)
37
+ rails-dom-testing (~> 2.2)
38
+ rails-html-sanitizer (~> 1.6)
39
+ useragent (~> 0.16)
40
+ actiontext (8.0.4)
41
+ actionpack (= 8.0.4)
42
+ activerecord (= 8.0.4)
43
+ activestorage (= 8.0.4)
44
+ activesupport (= 8.0.4)
45
+ globalid (>= 0.6.0)
46
+ nokogiri (>= 1.8.5)
47
+ actionview (8.0.4)
48
+ activesupport (= 8.0.4)
49
+ builder (~> 3.1)
50
+ erubi (~> 1.11)
51
+ rails-dom-testing (~> 2.2)
52
+ rails-html-sanitizer (~> 1.6)
53
+ activejob (8.0.4)
54
+ activesupport (= 8.0.4)
55
+ globalid (>= 0.3.6)
56
+ activemodel (8.0.4)
57
+ activesupport (= 8.0.4)
58
+ activerecord (8.0.4)
59
+ activemodel (= 8.0.4)
60
+ activesupport (= 8.0.4)
61
+ timeout (>= 0.4.0)
62
+ activestorage (8.0.4)
63
+ actionpack (= 8.0.4)
64
+ activejob (= 8.0.4)
65
+ activerecord (= 8.0.4)
66
+ activesupport (= 8.0.4)
67
+ marcel (~> 1.0)
68
+ activesupport (8.0.4)
69
+ base64
70
+ benchmark (>= 0.3)
71
+ bigdecimal
72
+ concurrent-ruby (~> 1.0, >= 1.3.1)
73
+ connection_pool (>= 2.2.5)
74
+ drb
75
+ i18n (>= 1.6, < 2)
76
+ logger (>= 1.4.2)
77
+ minitest (>= 5.1)
78
+ securerandom (>= 0.3)
79
+ tzinfo (~> 2.0, >= 2.0.5)
80
+ uri (>= 0.13.1)
81
+ addressable (2.8.8)
82
+ public_suffix (>= 2.0.2, < 8.0)
83
+ amazing_print (2.0.0)
84
+ appraisal (2.5.0)
85
+ bundler
86
+ rake
87
+ thor (>= 0.14.0)
88
+ ast (2.4.3)
89
+ base64 (0.3.0)
90
+ benchmark (0.5.0)
91
+ bigdecimal (4.0.1)
92
+ bindex (0.8.1)
93
+ builder (3.3.0)
94
+ capybara (3.40.0)
95
+ addressable
96
+ matrix
97
+ mini_mime (>= 0.1.3)
98
+ nokogiri (~> 1.11)
99
+ rack (>= 1.6.0)
100
+ rack-test (>= 0.6.3)
101
+ regexp_parser (>= 1.5, < 3.0)
102
+ xpath (~> 3.2)
103
+ concurrent-ruby (1.3.6)
104
+ connection_pool (3.0.2)
105
+ crass (1.0.6)
106
+ date (3.5.1)
107
+ debug (1.11.1)
108
+ irb (~> 1.10)
109
+ reline (>= 0.3.8)
110
+ drb (2.2.3)
111
+ erb (6.0.1)
112
+ erubi (1.13.1)
113
+ globalid (1.3.0)
114
+ activesupport (>= 6.1)
115
+ i18n (1.14.8)
116
+ concurrent-ruby (~> 1.0)
117
+ io-console (0.8.2)
118
+ irb (1.16.0)
119
+ pp (>= 0.6.0)
120
+ rdoc (>= 4.0.0)
121
+ reline (>= 0.4.2)
122
+ json (2.18.0)
123
+ language_server-protocol (3.17.0.5)
124
+ lint_roller (1.1.0)
125
+ logger (1.7.0)
126
+ loofah (2.25.0)
127
+ crass (~> 1.0.2)
128
+ nokogiri (>= 1.12.0)
129
+ mail (2.9.0)
130
+ logger
131
+ mini_mime (>= 0.1.1)
132
+ net-imap
133
+ net-pop
134
+ net-smtp
135
+ marcel (1.1.0)
136
+ matrix (0.4.3)
137
+ maxitest (6.2.0)
138
+ minitest (>= 5.20.0, < 5.28.0)
139
+ mini_mime (1.1.5)
140
+ minitest (5.27.0)
141
+ minitest-focus (1.4.1)
142
+ minitest (> 5.0)
143
+ minitest-spec-rails (7.4.1)
144
+ minitest (>= 5.0)
145
+ railties (>= 4.1)
146
+ net-imap (0.6.2)
147
+ date
148
+ net-protocol
149
+ net-pop (0.1.2)
150
+ net-protocol
151
+ net-protocol (0.2.2)
152
+ timeout
153
+ net-smtp (0.5.1)
154
+ net-protocol
155
+ nio4r (2.7.5)
156
+ nokogiri (1.19.0-aarch64-linux-gnu)
157
+ racc (~> 1.4)
158
+ nokogiri (1.19.0-aarch64-linux-musl)
159
+ racc (~> 1.4)
160
+ nokogiri (1.19.0-arm-linux-gnu)
161
+ racc (~> 1.4)
162
+ nokogiri (1.19.0-arm-linux-musl)
163
+ racc (~> 1.4)
164
+ nokogiri (1.19.0-arm64-darwin)
165
+ racc (~> 1.4)
166
+ nokogiri (1.19.0-x86_64-darwin)
167
+ racc (~> 1.4)
168
+ nokogiri (1.19.0-x86_64-linux-gnu)
169
+ racc (~> 1.4)
170
+ nokogiri (1.19.0-x86_64-linux-musl)
171
+ racc (~> 1.4)
172
+ parallel (1.27.0)
173
+ parser (3.3.10.1)
174
+ ast (~> 2.4.1)
175
+ racc
176
+ pp (0.6.3)
177
+ prettyprint
178
+ prettyprint (0.2.0)
179
+ prism (1.8.0)
180
+ psych (5.3.1)
181
+ date
182
+ stringio
183
+ public_suffix (7.0.2)
184
+ racc (1.8.1)
185
+ rack (3.2.4)
186
+ rack-session (2.1.1)
187
+ base64 (>= 0.1.0)
188
+ rack (>= 3.0.0)
189
+ rack-test (2.2.0)
190
+ rack (>= 1.3)
191
+ rackup (2.3.1)
192
+ rack (>= 3)
193
+ rails (8.0.4)
194
+ actioncable (= 8.0.4)
195
+ actionmailbox (= 8.0.4)
196
+ actionmailer (= 8.0.4)
197
+ actionpack (= 8.0.4)
198
+ actiontext (= 8.0.4)
199
+ actionview (= 8.0.4)
200
+ activejob (= 8.0.4)
201
+ activemodel (= 8.0.4)
202
+ activerecord (= 8.0.4)
203
+ activestorage (= 8.0.4)
204
+ activesupport (= 8.0.4)
205
+ bundler (>= 1.15.0)
206
+ railties (= 8.0.4)
207
+ rails-dom-testing (2.3.0)
208
+ activesupport (>= 5.0.0)
209
+ minitest
210
+ nokogiri (>= 1.6)
211
+ rails-html-sanitizer (1.6.2)
212
+ loofah (~> 2.21)
213
+ 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)
214
+ railties (8.0.4)
215
+ actionpack (= 8.0.4)
216
+ activesupport (= 8.0.4)
217
+ irb (~> 1.13)
218
+ rackup (>= 1.0.0)
219
+ rake (>= 12.2)
220
+ thor (~> 1.0, >= 1.2.2)
221
+ tsort (>= 0.2)
222
+ zeitwerk (~> 2.6)
223
+ rainbow (3.1.1)
224
+ rake (13.3.1)
225
+ rdoc (7.1.0)
226
+ erb
227
+ psych (>= 4.0.0)
228
+ tsort
229
+ regexp_parser (2.11.3)
230
+ reline (0.6.3)
231
+ io-console (~> 0.5)
232
+ rubocop (1.82.1)
233
+ json (~> 2.3)
234
+ language_server-protocol (~> 3.17.0.2)
235
+ lint_roller (~> 1.1.0)
236
+ parallel (~> 1.10)
237
+ parser (>= 3.3.0.2)
238
+ rainbow (>= 2.2.2, < 4.0)
239
+ regexp_parser (>= 2.9.3, < 3.0)
240
+ rubocop-ast (>= 1.48.0, < 2.0)
241
+ ruby-progressbar (~> 1.7)
242
+ unicode-display_width (>= 2.4.0, < 4.0)
243
+ rubocop-ast (1.49.0)
244
+ parser (>= 3.3.7.2)
245
+ prism (~> 1.7)
246
+ rubocop-disable_syntax (0.2.0)
247
+ lint_roller
248
+ rubocop (>= 1.72.0)
249
+ rubocop-minitest (0.38.2)
250
+ lint_roller (~> 1.1)
251
+ rubocop (>= 1.75.0, < 2.0)
252
+ rubocop-ast (>= 1.38.0, < 2.0)
253
+ rubocop-packaging (0.6.0)
254
+ lint_roller (~> 1.1.0)
255
+ rubocop (>= 1.72.1, < 2.0)
256
+ rubocop-performance (1.26.1)
257
+ lint_roller (~> 1.1)
258
+ rubocop (>= 1.75.0, < 2.0)
259
+ rubocop-ast (>= 1.47.1, < 2.0)
260
+ rubocop-rails (2.34.3)
261
+ activesupport (>= 4.2.0)
262
+ lint_roller (~> 1.1)
263
+ rack (>= 1.1)
264
+ rubocop (>= 1.75.0, < 2.0)
265
+ rubocop-ast (>= 1.44.0, < 2.0)
266
+ rubocop-rake (0.7.1)
267
+ lint_roller (~> 1.1)
268
+ rubocop (>= 1.72.1)
269
+ ruby-progressbar (1.13.0)
270
+ securerandom (0.4.1)
271
+ sqlite3 (2.9.0-aarch64-linux-gnu)
272
+ sqlite3 (2.9.0-aarch64-linux-musl)
273
+ sqlite3 (2.9.0-arm-linux-gnu)
274
+ sqlite3 (2.9.0-arm-linux-musl)
275
+ sqlite3 (2.9.0-arm64-darwin)
276
+ sqlite3 (2.9.0-x86_64-darwin)
277
+ sqlite3 (2.9.0-x86_64-linux-gnu)
278
+ sqlite3 (2.9.0-x86_64-linux-musl)
279
+ stringio (3.2.0)
280
+ thor (1.5.0)
281
+ timeout (0.6.0)
282
+ tsort (0.2.0)
283
+ tzinfo (2.0.6)
284
+ concurrent-ruby (~> 1.0)
285
+ unicode-display_width (3.2.0)
286
+ unicode-emoji (~> 4.1)
287
+ unicode-emoji (4.2.0)
288
+ uri (1.1.1)
289
+ useragent (0.16.11)
290
+ web-console (4.2.1)
291
+ actionview (>= 6.0.0)
292
+ activemodel (>= 6.0.0)
293
+ bindex (>= 0.4.0)
294
+ railties (>= 6.0.0)
295
+ websocket-driver (0.8.0)
296
+ base64
297
+ websocket-extensions (>= 0.1.0)
298
+ websocket-extensions (0.1.5)
299
+ xpath (3.2.0)
300
+ nokogiri (~> 1.8)
301
+ zeitwerk (2.7.4)
302
+
303
+ PLATFORMS
304
+ aarch64-linux
305
+ aarch64-linux-gnu
306
+ aarch64-linux-musl
307
+ arm-linux-gnu
308
+ arm-linux-musl
309
+ arm64-darwin
310
+ x86_64-darwin
311
+ x86_64-linux
312
+ x86_64-linux-gnu
313
+ x86_64-linux-musl
314
+
315
+ DEPENDENCIES
316
+ amazing_print
317
+ appraisal
318
+ capybara
319
+ debug
320
+ insertion!
321
+ maxitest
322
+ minitest (~> 5.0)
323
+ minitest-focus
324
+ minitest-spec-rails
325
+ rails (~> 8.0.1)
326
+ rubocop-disable_syntax
327
+ rubocop-minitest
328
+ rubocop-packaging
329
+ rubocop-performance
330
+ rubocop-rails
331
+ rubocop-rake
332
+ sqlite3
333
+ web-console
334
+
335
+ CHECKSUMS
336
+ actioncable (8.0.4) sha256=aadb2bf2977b666cfeaa7dee66fd50e147559f78a8d55f6169e913502475e09f
337
+ actionmailbox (8.0.4) sha256=ed0b634a502fb63d1ba01ae025772e9d0261b7ba12e66389c736fcf4635cd80f
338
+ actionmailer (8.0.4) sha256=3b9270d8e19f0afb534b11c52f439937dc30028adcbbae2b244f3383ce75de4b
339
+ actionpack (8.0.4) sha256=0364c7582f32c8f404725fa30d3f6853f834c5f4964afd4a072b848c8a23cddb
340
+ actiontext (8.0.4) sha256=40b3970268ac29b865685456b2586df5052d068fd0cb04acb2291e737cea2340
341
+ actionview (8.0.4) sha256=5bd3c41ee7a59e14cf062bb5e4ee53c9a253d12fc13c8754cae368012e1a1648
342
+ activejob (8.0.4) sha256=cbc8a85d0e168cb90a5629c8a36fe2d08ba840103d3aed3eee0c7beb784fccce
343
+ activemodel (8.0.4) sha256=8f4e4fac3cd104b1bf30419c3745206f6f724c0e2902a939b4113f4c90730dfd
344
+ activerecord (8.0.4) sha256=bda32c171799e5ca5460447d3b7272ed14447244e2497abf2107f87fc44cbf32
345
+ activestorage (8.0.4) sha256=47f312962fc898c1669f20cf7448d19668a5547f4a5f64e59a837d9d3f64a043
346
+ activesupport (8.0.4) sha256=894a3a6c7733b5fae5a7df3acd76c4b563f38687df8a04fa3cbd25360f3fe95a
347
+ addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
348
+ amazing_print (2.0.0) sha256=2e36aba46ac78d37ed27ca0e2056afe3583183bb5c64f157c246b267355e5d6a
349
+ appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
350
+ ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
351
+ base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
352
+ benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
353
+ bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
354
+ bindex (0.8.1) sha256=7b1ecc9dc539ed8bccfc8cb4d2732046227b09d6f37582ff12e50a5047ceb17e
355
+ builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
356
+ capybara (3.40.0) sha256=42dba720578ea1ca65fd7a41d163dd368502c191804558f6e0f71b391054aeef
357
+ concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
358
+ connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
359
+ crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
360
+ date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
361
+ debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6
362
+ drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
363
+ erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
364
+ erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
365
+ globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
366
+ i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
367
+ insertion (0.1.0)
368
+ io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
369
+ irb (1.16.0) sha256=2abe56c9ac947cdcb2f150572904ba798c1e93c890c256f8429981a7675b0806
370
+ json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
371
+ language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
372
+ lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
373
+ logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
374
+ loofah (2.25.0) sha256=df5ed7ac3bac6a4ec802df3877ee5cc86d027299f8952e6243b3dac446b060e6
375
+ mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
376
+ marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
377
+ matrix (0.4.3) sha256=a0d5ab7ddcc1973ff690ab361b67f359acbb16958d1dc072b8b956a286564c5b
378
+ maxitest (6.2.0) sha256=bb66472dd3f6565e4db5246826a05ce9096958d9e26ba9a8fdcae20288be1f4f
379
+ mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
380
+ minitest (5.27.0) sha256=2d3b17f8a36fe7801c1adcffdbc38233b938eb0b4966e97a6739055a45fa77d5
381
+ minitest-focus (1.4.1) sha256=394517cbe2dcb2d992d8ffc41a3b2b6315777a4daa69239de4fefe7110dd810e
382
+ minitest-spec-rails (7.4.1) sha256=cda2638ded7cd98ab5f2bbf0eafbba9fdc4b0fc58248ad38703b12403831254f
383
+ net-imap (0.6.2) sha256=08caacad486853c61676cca0c0c47df93db02abc4a8239a8b67eb0981428acc6
384
+ net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
385
+ net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
386
+ net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
387
+ nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
388
+ nokogiri (1.19.0-aarch64-linux-gnu) sha256=11a97ecc3c0e7e5edcf395720b10860ef493b768f6aa80c539573530bc933767
389
+ nokogiri (1.19.0-aarch64-linux-musl) sha256=eb70507f5e01bc23dad9b8dbec2b36ad0e61d227b42d292835020ff754fb7ba9
390
+ nokogiri (1.19.0-arm-linux-gnu) sha256=572a259026b2c8b7c161fdb6469fa2d0edd2b61cd599db4bbda93289abefbfe5
391
+ nokogiri (1.19.0-arm-linux-musl) sha256=23ed90922f1a38aed555d3de4d058e90850c731c5b756d191b3dc8055948e73c
392
+ nokogiri (1.19.0-arm64-darwin) sha256=0811dfd936d5f6dd3f6d32ef790568bf29b2b7bead9ba68866847b33c9cf5810
393
+ nokogiri (1.19.0-x86_64-darwin) sha256=1dad56220b603a8edb9750cd95798bffa2b8dd9dd9aa47f664009ee5b43e3067
394
+ nokogiri (1.19.0-x86_64-linux-gnu) sha256=f482b95c713d60031d48c44ce14562f8d2ce31e3a9e8dd0ccb131e9e5a68b58c
395
+ nokogiri (1.19.0-x86_64-linux-musl) sha256=1c4ca6b381622420073ce6043443af1d321e8ed93cc18b08e2666e5bd02ffae4
396
+ parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
397
+ parser (3.3.10.1) sha256=06f6a725d2cd91e5e7f2b7c32ba143631e1f7c8ae2fb918fc4cebec187e6a688
398
+ pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
399
+ prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
400
+ prism (1.8.0) sha256=84453a16ef5530ea62c5f03ec16b52a459575ad4e7b9c2b360fd8ce2c39c1254
401
+ psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
402
+ public_suffix (7.0.2) sha256=9114090c8e4e7135c1fd0e7acfea33afaab38101884320c65aaa0ffb8e26a857
403
+ racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
404
+ rack (3.2.4) sha256=5d74b6f75082a643f43c1e76b419c40f0e5527fcfee1e669ac1e6b73c0ccb6f6
405
+ rack-session (2.1.1) sha256=0b6dc07dea7e4b583f58a48e8b806d4c9f1c6c9214ebc202ec94562cbea2e4e9
406
+ rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
407
+ rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
408
+ rails (8.0.4) sha256=364494a32d2dc3f9d5c135d036ce47e7776684bc6add73f1037ac2b1007962db
409
+ rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
410
+ rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
411
+ railties (8.0.4) sha256=8203d853dcffab4abcdd05c193f101676a92068075464694790f6d8f72d5cb47
412
+ rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
413
+ rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
414
+ rdoc (7.1.0) sha256=494899df0706c178596ca6e1d50f1b7eb285a9b2aae715be5abd742734f17363
415
+ regexp_parser (2.11.3) sha256=ca13f381a173b7a93450e53459075c9b76a10433caadcb2f1180f2c741fc55a4
416
+ reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
417
+ rubocop (1.82.1) sha256=09f1a6a654a960eda767aebea33e47603080f8e9c9a3f019bf9b94c9cab5e273
418
+ rubocop-ast (1.49.0) sha256=49c3676d3123a0923d333e20c6c2dbaaae2d2287b475273fddee0c61da9f71fd
419
+ rubocop-disable_syntax (0.2.0) sha256=1e61645773b3fc2f74e995ec65f605f7db59437c274fdfd4f385f60bf86af73e
420
+ rubocop-minitest (0.38.2) sha256=5a9dfb5a538973d0601aa51e59637d3998bb8df81233edf1ff421504c6280068
421
+ rubocop-packaging (0.6.0) sha256=fb92bd0fb48e6f8cdb1648d2249b0cd51c2497dcc87340132d22f01edbf558a7
422
+ rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
423
+ rubocop-rails (2.34.3) sha256=10d37989024865ecda8199f311f3faca990143fbac967de943f88aca11eb9ad2
424
+ rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
425
+ ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
426
+ securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
427
+ sqlite3 (2.9.0-aarch64-linux-gnu) sha256=cfe1e0216f46d7483839719bf827129151e6c680317b99d7b8fc1597a3e13473
428
+ sqlite3 (2.9.0-aarch64-linux-musl) sha256=56a35cb2d70779afc2ac191baf2c2148242285ecfed72f9b021218c5c4917913
429
+ sqlite3 (2.9.0-arm-linux-gnu) sha256=a19a21504b0d7c8c825fbbf37b358ae316b6bd0d0134c619874060b2eef05435
430
+ sqlite3 (2.9.0-arm-linux-musl) sha256=fca5b26197c70e3363115d3faaea34d7b2ad9c7f5fa8d8312e31b64e7556ee07
431
+ sqlite3 (2.9.0-arm64-darwin) sha256=a917bd9b84285766ff3300b7d79cd583f5a067594c8c1263e6441618c04a6ed3
432
+ sqlite3 (2.9.0-x86_64-darwin) sha256=59fe51baa3cb33c36d27ce78b4ed9360cd33ccca09498c2ae63850c97c0a6026
433
+ sqlite3 (2.9.0-x86_64-linux-gnu) sha256=72fff9bd750070ba3af695511ba5f0e0a2d8a9206f84869640b3e99dfaf3d5a5
434
+ sqlite3 (2.9.0-x86_64-linux-musl) sha256=ef716ba7a66d7deb1ccc402ac3a6d7343da17fac862793b7f0be3d2917253c90
435
+ stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
436
+ thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
437
+ timeout (0.6.0) sha256=6d722ad619f96ee383a0c557ec6eb8c4ecb08af3af62098a0be5057bf00de1af
438
+ tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
439
+ tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
440
+ unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
441
+ unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
442
+ uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
443
+ useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
444
+ web-console (4.2.1) sha256=e7bcf37a10ea2b4ec4281649d1cee461b32232d0a447e82c786e6841fd22fe20
445
+ websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
446
+ websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
447
+ xpath (3.2.0) sha256=6dfda79d91bb3b949b947ecc5919f042ef2f399b904013eb3ef6d20dd3a4082e
448
+ zeitwerk (2.7.4) sha256=2bef90f356bdafe9a6c2bd32bcd804f83a4f9b8bc27f3600fff051eb3edcec8b
449
+
450
+ BUNDLED WITH
451
+ 4.0.3
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'rails/engine'
4
+
3
5
  module Insertion
4
6
  class Railtie < Rails::Engine
5
7
  end
@@ -26,7 +26,7 @@ module Insertion
26
26
  end
27
27
 
28
28
  def do_insert!
29
- result = model.insert!(attributes, returning: Arel.sql('*'))
29
+ result = model.insert!(attributes, returning: Arel.sql('*')) # rubocop:disable Rails/SkipsModelValidations
30
30
  record = model.instantiate result.to_a.first
31
31
 
32
32
  after_insert(record) if respond_to?(:after_insert)
@@ -37,7 +37,7 @@ module Insertion
37
37
  def build_insert!
38
38
  result = nil
39
39
  model.transaction do
40
- result = model.insert!(attributes, returning: Arel.sql('*'))
40
+ result = model.insert!(attributes, returning: Arel.sql('*')) # rubocop:disable Rails/SkipsModelValidations
41
41
  raise ActiveRecord::Rollback
42
42
  end
43
43
 
@@ -50,11 +50,11 @@ module Insertion
50
50
 
51
51
  private
52
52
 
53
- def insert(model_name, *, **) = Insertion.insert(model_name, *, **)
54
- def build(model_name, *, **) = Insertion.build(model_name, *, **)
53
+ def insert(model_name, *, **) = Insertion.insert(model_name, *, **)
54
+ def build(model_name, *, **) = Insertion.build(model_name, *, **)
55
55
 
56
- def model
57
- @model ||= self.class.name.sub(/Insert$/, '').constantize
58
- end
56
+ def model
57
+ @model ||= self.class.name.sub(/Insert$/, '').constantize
58
+ end
59
59
  end
60
60
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Insertion
4
- VERSION = '0.1.0'
4
+ VERSION = '0.2.0'
5
5
  end
metadata CHANGED
@@ -1,29 +1,54 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: insertion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Moss
8
8
  bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
- dependencies: []
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rails
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 7.2.0
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '9.0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: 7.2.0
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '9.0'
12
32
  email:
13
33
  - joel@developwithstyle.com
14
34
  executables: []
15
35
  extensions: []
16
36
  extra_rdoc_files: []
17
37
  files:
38
+ - ".ruby-version"
39
+ - Appraisals
18
40
  - README.md
19
41
  - Rakefile
20
42
  - config/environments/test.rb
43
+ - gemfiles/rails7.gemfile
44
+ - gemfiles/rails7.gemfile.lock
45
+ - gemfiles/rails8.gemfile
46
+ - gemfiles/rails8.gemfile.lock
21
47
  - lib/insertion.rb
22
48
  - lib/insertion/bare_insert.rb
23
49
  - lib/insertion/engine.rb
24
50
  - lib/insertion/insert.rb
25
51
  - lib/insertion/version.rb
26
- - sig/insertion.rbs
27
52
  homepage: https://github.com/joelmoss/insertion
28
53
  licenses: []
29
54
  metadata:
data/sig/insertion.rbs DELETED
@@ -1,4 +0,0 @@
1
- module Insertion
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end