onload 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28a13165064ab12f90be8cbd747bf6415db93f389372504da6a74be9990fbf7f
4
- data.tar.gz: ad1c1d895454a361f1d395bff11df2a49d29ca9141f4b17ff84eb5cb8b60d104
3
+ metadata.gz: 3c041fc54820d21453d5f755e87e35c91881e976d0b51b16d757ecfa20b55f4c
4
+ data.tar.gz: 8d8520e2f427c22df3562c5aa6b0c5ae0b890333a3149a21a1f181a9ec365b0e
5
5
  SHA512:
6
- metadata.gz: 45318e23c8ced6dd3cfaf49d5f700315963c0d3f8abf0dd10dc2bb97c7a06060bb34806cc6787c3989db8a393c57e32f65114ed2590bd2c7bdad32b719026fec
7
- data.tar.gz: e21049998cfd402b47b71938156f7f93054508486bb3968ae4a7544cd7c1ff0109799259d1213cf56240501fddb0027b642fdfaa21906d0b16120115a71a7f62
6
+ metadata.gz: fc15ad2aa9f2c17e84b2fdd1110d1ba930bb179dc13a1df827a4ca29ca7a19d4a2b4158fe66ee285ce92b2af8522f787c6f3526e9d068fb62dd4439137bcc0c7
7
+ data.tar.gz: 6475cd2fae9260661881cf3eb42769c8a25dd3a776a651293ba38094affa21a9520033efc8488f08b6706ef8ab7c92fcf6d0d1641769d695697869009ab70a0f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 1.0.3
2
+ * Fix Bootsnap issue causing `NoMethodError`.
3
+ - Onload started out using `alias_method` to override certain Zeitwerk and Bootsnap methods. When it was extracted into a gem, I chose to use `Module#prepend` instead. I forgot to convert one of the method calls to `super`, hence the error.
4
+
5
+ ## 1.0.2
6
+ * Add support for Rails 7.1.
7
+ * Add support for Zeitwerk 2.6.12.
8
+
1
9
  ## 1.0.1
2
10
  * Fix bug causing compiled C extensions (i.e. .bundle and .so files) to be passed to `Kernel.load` when `require`d, which tries to evaluate them as text/Ruby code.
3
11
 
@@ -15,7 +15,7 @@ module Onload
15
15
  cached_path = Bootsnap::LoadPathCache.load_path_cache.find(path)
16
16
 
17
17
  if (unprocessed_path = Onload.unprocessed_file_for(cached_path))
18
- return autoload_without_bootsnap(const, unprocessed_path)
18
+ return super(const, unprocessed_path)
19
19
  end
20
20
 
21
21
  super
@@ -32,6 +32,11 @@ module Onload
32
32
 
33
33
  super
34
34
  end
35
+
36
+ # introduced in Zeitwerk v2.6.10
37
+ def cname_for(basename, abspath)
38
+ super(Onload.basename(basename), abspath)
39
+ end
35
40
  end
36
41
  end
37
42
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Onload
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.3"
5
5
  end
@@ -68292,3 +68292,279 @@ Processing by HomeController#index as HTML
68292
68292
  Rendered home/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 94)
68293
68293
  Rendered layout layouts/application.html.erb (Duration: 1.1ms | Allocations: 149)
68294
68294
  Completed 200 OK in 2ms (Views: 1.9ms | Allocations: 554)
68295
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:16:21 -0800
68296
+ Processing by HomeController#index as HTML
68297
+ Rendering layout layouts/application.html.erb
68298
+ Rendering home/index.html.erb within layouts/application
68299
+ Rendered home/index.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1840)
68300
+ Rendered layout layouts/application.html.erb (Duration: 3.1ms | Allocations: 2011)
68301
+ Completed 200 OK in 24ms (Views: 8.6ms | Allocations: 12281)
68302
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:16:21 -0800
68303
+ Processing by HomeController#index as HTML
68304
+ Rendering layout layouts/application.html.erb
68305
+ Rendering home/index.html.erb within layouts/application
68306
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 8)
68307
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 58)
68308
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 240)
68309
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:16:21 -0800
68310
+ Processing by HomeController#index as HTML
68311
+ Rendering layout layouts/application.html.erb
68312
+ Rendering home/index.html.erb within layouts/application
68313
+ Rendered home/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 94)
68314
+ Rendered layout layouts/application.html.erb (Duration: 1.3ms | Allocations: 149)
68315
+ Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 554)
68316
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:32:37 -0800
68317
+ Processing by HomeController#index as HTML
68318
+ Rendering layout layouts/application.html.erb
68319
+ Rendering home/index.html.erb within layouts/application
68320
+ Rendered home/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 313)
68321
+ Rendered layout layouts/application.html.erb (Duration: 1.7ms | Allocations: 505)
68322
+ Completed 200 OK in 31ms (Views: 10.7ms | Allocations: 14990)
68323
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:32:37 -0800
68324
+ Processing by HomeController#index as HTML
68325
+ Rendering layout layouts/application.html.erb
68326
+ Rendering home/index.html.erb within layouts/application
68327
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
68328
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 79)
68329
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 255)
68330
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:32:37 -0800
68331
+ Processing by HomeController#index as HTML
68332
+ Rendering layout layouts/application.html.erb
68333
+ Rendering home/index.html.erb within layouts/application
68334
+ Rendered home/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 184)
68335
+ Rendered layout layouts/application.html.erb (Duration: 1.5ms | Allocations: 332)
68336
+ Completed 200 OK in 3ms (Views: 2.4ms | Allocations: 1068)
68337
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:32:54 -0800
68338
+ Processing by HomeController#index as HTML
68339
+ Rendering layout layouts/application.html.erb
68340
+ Rendering home/index.html.erb within layouts/application
68341
+ Rendered home/index.html.erb within layouts/application (Duration: 1.4ms | Allocations: 309)
68342
+ Rendered layout layouts/application.html.erb (Duration: 1.8ms | Allocations: 501)
68343
+ Completed 200 OK in 23ms (Views: 9.0ms | Allocations: 14960)
68344
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:32:55 -0800
68345
+ Processing by HomeController#index as HTML
68346
+ Rendering layout layouts/application.html.erb
68347
+ Rendering home/index.html.erb within layouts/application
68348
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
68349
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 79)
68350
+ Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 255)
68351
+ Started GET "/" for 127.0.0.1 at 2023-11-09 21:32:55 -0800
68352
+ Processing by HomeController#index as HTML
68353
+ Rendering layout layouts/application.html.erb
68354
+ Rendering home/index.html.erb within layouts/application
68355
+ Rendered home/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 180)
68356
+ Rendered layout layouts/application.html.erb (Duration: 1.6ms | Allocations: 328)
68357
+ Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 1067)
68358
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:48 -0800
68359
+ Processing by HomeController#index as HTML
68360
+ Rendering home/index.html.erb within layouts/application
68361
+ Rendered home/index.html.erb within layouts/application (2.8ms)
68362
+ Completed 200 OK in 10ms (Views: 9.2ms)
68363
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:48 -0800
68364
+ Processing by HomeController#index as HTML
68365
+ Rendering home/index.html.erb within layouts/application
68366
+ Rendered home/index.html.erb within layouts/application (0.2ms)
68367
+ Completed 200 OK in 2ms (Views: 1.8ms)
68368
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:48 -0800
68369
+ Processing by HomeController#index as HTML
68370
+ Rendering home/index.html.erb within layouts/application
68371
+ Rendered home/index.html.erb within layouts/application (1.1ms)
68372
+ Completed 200 OK in 3ms (Views: 2.9ms)
68373
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:52 -0800
68374
+ Processing by HomeController#index as HTML
68375
+ Rendering home/index.html.erb within layouts/application
68376
+ Rendered home/index.html.erb within layouts/application (Duration: 2.6ms | Allocations: 1543)
68377
+ Completed 200 OK in 20ms (Views: 8.9ms | Allocations: 9247)
68378
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:52 -0800
68379
+ Processing by HomeController#index as HTML
68380
+ Rendering home/index.html.erb within layouts/application
68381
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 8)
68382
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 237)
68383
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:52 -0800
68384
+ Processing by HomeController#index as HTML
68385
+ Rendering home/index.html.erb within layouts/application
68386
+ Rendered home/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 82)
68387
+ Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 463)
68388
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:56 -0800
68389
+ Processing by HomeController#index as HTML
68390
+ Rendering layout layouts/application.html.erb
68391
+ Rendering home/index.html.erb within layouts/application
68392
+ Rendered home/index.html.erb within layouts/application (Duration: 2.9ms | Allocations: 1525)
68393
+ Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 1652)
68394
+ Completed 200 OK in 21ms (Views: 9.8ms | Allocations: 8643)
68395
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:56 -0800
68396
+ Processing by HomeController#index as HTML
68397
+ Rendering layout layouts/application.html.erb
68398
+ Rendering home/index.html.erb within layouts/application
68399
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 8)
68400
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 48)
68401
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 249)
68402
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:31:56 -0800
68403
+ Processing by HomeController#index as HTML
68404
+ Rendering layout layouts/application.html.erb
68405
+ Rendering home/index.html.erb within layouts/application
68406
+ Rendered home/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 82)
68407
+ Rendered layout layouts/application.html.erb (Duration: 0.7ms | Allocations: 122)
68408
+ Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 435)
68409
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:00 -0800
68410
+ Processing by HomeController#index as HTML
68411
+ Rendering layout layouts/application.html.erb
68412
+ Rendering home/index.html.erb within layouts/application
68413
+ Rendered home/index.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1501)
68414
+ Rendered layout layouts/application.html.erb (Duration: 2.7ms | Allocations: 1631)
68415
+ Completed 200 OK in 21ms (Views: 8.1ms | Allocations: 10592)
68416
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:00 -0800
68417
+ Processing by HomeController#index as HTML
68418
+ Rendering layout layouts/application.html.erb
68419
+ Rendering home/index.html.erb within layouts/application
68420
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 8)
68421
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 48)
68422
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 225)
68423
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:00 -0800
68424
+ Processing by HomeController#index as HTML
68425
+ Rendering layout layouts/application.html.erb
68426
+ Rendering home/index.html.erb within layouts/application
68427
+ Rendered home/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 82)
68428
+ Rendered layout layouts/application.html.erb (Duration: 0.8ms | Allocations: 122)
68429
+ Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 411)
68430
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:06 -0800
68431
+ Processing by HomeController#index as HTML
68432
+ Rendering home/index.html.erb within layouts/application
68433
+ Rendered home/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1686)
68434
+ Completed 200 OK in 20ms (Views: 9.9ms | Allocations: 10048)
68435
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:06 -0800
68436
+ Processing by HomeController#index as HTML
68437
+ Rendering home/index.html.erb within layouts/application
68438
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 12)
68439
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 289)
68440
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:06 -0800
68441
+ Processing by HomeController#index as HTML
68442
+ Rendering home/index.html.erb within layouts/application
68443
+ Rendered home/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 119)
68444
+ Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 774)
68445
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:10 -0800
68446
+ Processing by HomeController#index as HTML
68447
+ Rendering layout layouts/application.html.erb
68448
+ Rendering home/index.html.erb within layouts/application
68449
+ Rendered home/index.html.erb within layouts/application (Duration: 3.1ms | Allocations: 1669)
68450
+ Rendered layout layouts/application.html.erb (Duration: 3.5ms | Allocations: 1861)
68451
+ Completed 200 OK in 19ms (Views: 9.4ms | Allocations: 9394)
68452
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:10 -0800
68453
+ Processing by HomeController#index as HTML
68454
+ Rendering layout layouts/application.html.erb
68455
+ Rendering home/index.html.erb within layouts/application
68456
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 12)
68457
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 59)
68458
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 306)
68459
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:10 -0800
68460
+ Processing by HomeController#index as HTML
68461
+ Rendering layout layouts/application.html.erb
68462
+ Rendering home/index.html.erb within layouts/application
68463
+ Rendered home/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 119)
68464
+ Rendered layout layouts/application.html.erb (Duration: 0.8ms | Allocations: 183)
68465
+ Completed 200 OK in 2ms (Views: 1.4ms | Allocations: 693)
68466
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:13 -0800
68467
+ Processing by HomeController#index as HTML
68468
+ Rendering layout layouts/application.html.erb
68469
+ Rendering home/index.html.erb within layouts/application
68470
+ Rendered home/index.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1646)
68471
+ Rendered layout layouts/application.html.erb (Duration: 2.5ms | Allocations: 1840)
68472
+ Completed 200 OK in 17ms (Views: 6.8ms | Allocations: 11319)
68473
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:13 -0800
68474
+ Processing by HomeController#index as HTML
68475
+ Rendering layout layouts/application.html.erb
68476
+ Rendering home/index.html.erb within layouts/application
68477
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 12)
68478
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 59)
68479
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 286)
68480
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:32:13 -0800
68481
+ Processing by HomeController#index as HTML
68482
+ Rendering layout layouts/application.html.erb
68483
+ Rendering home/index.html.erb within layouts/application
68484
+ Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 118)
68485
+ Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 182)
68486
+ Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 674)
68487
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:07 -0800
68488
+ Processing by HomeController#index as HTML
68489
+ Rendering layout layouts/application.html.erb
68490
+ Rendering home/index.html.erb within layouts/application
68491
+ Rendered home/index.html.erb within layouts/application (Duration: 2.6ms | Allocations: 1666)
68492
+ Rendered layout layouts/application.html.erb (Duration: 3.0ms | Allocations: 1862)
68493
+ Completed 200 OK in 19ms (Views: 8.6ms | Allocations: 9189)
68494
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:07 -0800
68495
+ Processing by HomeController#index as HTML
68496
+ Rendering layout layouts/application.html.erb
68497
+ Rendering home/index.html.erb within layouts/application
68498
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 12)
68499
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 61)
68500
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 310)
68501
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:07 -0800
68502
+ Processing by HomeController#index as HTML
68503
+ Rendering layout layouts/application.html.erb
68504
+ Rendering home/index.html.erb within layouts/application
68505
+ Rendered home/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 117)
68506
+ Rendered layout layouts/application.html.erb (Duration: 1.3ms | Allocations: 183)
68507
+ Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 688)
68508
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:50 -0800
68509
+ Processing by HomeController#index as HTML
68510
+ Rendering layout layouts/application.html.erb
68511
+ Rendering home/index.html.erb within layouts/application
68512
+ Rendered home/index.html.erb within layouts/application (Duration: 2.6ms | Allocations: 1642)
68513
+ Rendered layout layouts/application.html.erb (Duration: 2.9ms | Allocations: 1839)
68514
+ Completed 200 OK in 22ms (Views: 8.7ms | Allocations: 11130)
68515
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:50 -0800
68516
+ Processing by HomeController#index as HTML
68517
+ Rendering layout layouts/application.html.erb
68518
+ Rendering home/index.html.erb within layouts/application
68519
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 12)
68520
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 61)
68521
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 290)
68522
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:50 -0800
68523
+ Processing by HomeController#index as HTML
68524
+ Rendering layout layouts/application.html.erb
68525
+ Rendering home/index.html.erb within layouts/application
68526
+ Rendered home/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 116)
68527
+ Rendered layout layouts/application.html.erb (Duration: 1.3ms | Allocations: 182)
68528
+ Completed 200 OK in 2ms (Views: 1.9ms | Allocations: 669)
68529
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:55 -0800
68530
+ Processing by HomeController#index as HTML
68531
+ Rendering layout layouts/application.html.erb
68532
+ Rendering home/index.html.erb within layouts/application
68533
+ Rendered home/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1867)
68534
+ Rendered layout layouts/application.html.erb (Duration: 2.9ms | Allocations: 2036)
68535
+ Completed 200 OK in 19ms (Views: 8.6ms | Allocations: 10183)
68536
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:56 -0800
68537
+ Processing by HomeController#index as HTML
68538
+ Rendering layout layouts/application.html.erb
68539
+ Rendering home/index.html.erb within layouts/application
68540
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 8)
68541
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 57)
68542
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 261)
68543
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:56 -0800
68544
+ Processing by HomeController#index as HTML
68545
+ Rendering layout layouts/application.html.erb
68546
+ Rendering home/index.html.erb within layouts/application
68547
+ Rendered home/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 94)
68548
+ Rendered layout layouts/application.html.erb (Duration: 1.4ms | Allocations: 147)
68549
+ Completed 200 OK in 2ms (Views: 2.0ms | Allocations: 575)
68550
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:33:59 -0800
68551
+ Processing by HomeController#index as HTML
68552
+ Rendering layout layouts/application.html.erb
68553
+ Rendering home/index.html.erb within layouts/application
68554
+ Rendered home/index.html.erb within layouts/application (Duration: 2.8ms | Allocations: 1840)
68555
+ Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 2011)
68556
+ Completed 200 OK in 22ms (Views: 8.6ms | Allocations: 12275)
68557
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:34:00 -0800
68558
+ Processing by HomeController#index as HTML
68559
+ Rendering layout layouts/application.html.erb
68560
+ Rendering home/index.html.erb within layouts/application
68561
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 8)
68562
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 58)
68563
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 241)
68564
+ Started GET "/" for 127.0.0.1 at 2023-11-10 15:34:00 -0800
68565
+ Processing by HomeController#index as HTML
68566
+ Rendering layout layouts/application.html.erb
68567
+ Rendering home/index.html.erb within layouts/application
68568
+ Rendered home/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 94)
68569
+ Rendered layout layouts/application.html.erb (Duration: 1.2ms | Allocations: 149)
68570
+ Completed 200 OK in 2ms (Views: 1.7ms | Allocations: 555)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onload
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-04 00:00:00.000000000 Z
11
+ date: 2023-11-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A preprocessor system for Ruby.
14
14
  email: