apidae 1.4.12 → 1.4.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/apidae/apidae_data_parser.rb +1 -1
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +696 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a19129ca8483240cd356cf65fb0c41310e30fc2a806a101d297679e1d8c9f583
|
4
|
+
data.tar.gz: 2b7d30331d88aa8c50c5bc8f70e152e5dbdcf830299d0a4f474da2ee773872c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5c8ed3f9ab28a29b2fc5b4b58b57416efb4ec57e124807eaf62d757f77f68771f8a58e16f2b8a5260613cc163c1f7d56a884b559f524a04e9a4226e26eacb7b
|
7
|
+
data.tar.gz: 71e8ce280d01da070d3b110df3e00ff744464330caccef4e433641963c6c6441d0762a36675f6468a7d433293a114547fabf798144bf3e14a4c9bb03f12b17db
|
@@ -376,7 +376,7 @@ module Apidae
|
|
376
376
|
def self.build_rate(rate_period, *locales)
|
377
377
|
{
|
378
378
|
id: rate_period[:identifiant], start_date: rate_period[:dateDebut], end_date: rate_period[:dateFin],
|
379
|
-
values: rate_period[:tarifs].blank? ? [] : rate_period[:tarifs].map {|t| {min: t[:minimum], max: t[:maximum], type: t[:type][:id], details: node_value(t, :precisionTarif, *locales)}}
|
379
|
+
values: rate_period[:tarifs].blank? ? [] : rate_period[:tarifs].map {|t| {min: t[:minimum], max: t[:maximum], unit: t[:devise], type: t[:type][:id], details: node_value(t, :precisionTarif, *locales)}}
|
380
380
|
}
|
381
381
|
end
|
382
382
|
|
data/lib/apidae/version.rb
CHANGED
@@ -12439,6 +12439,702 @@ callback this way:
|
|
12439
12439
|
That block runs when the application boots, and every time there is a reload.
|
12440
12440
|
For historical reasons, it may run twice, so it has to be idempotent.
|
12441
12441
|
|
12442
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12443
|
+
Rails autoloads and reloads.
|
12444
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12445
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12446
|
+
|
12447
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12448
|
+
to be an error condition in future versions of Rails.
|
12449
|
+
|
12450
|
+
Reloading does not reboot the application, and therefore code executed during
|
12451
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12452
|
+
the expected changes won't be reflected in that stale Module object.
|
12453
|
+
|
12454
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12455
|
+
|
12456
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12457
|
+
callback this way:
|
12458
|
+
|
12459
|
+
Rails.application.reloader.to_prepare do
|
12460
|
+
# Autoload classes and modules needed at boot time here.
|
12461
|
+
end
|
12462
|
+
|
12463
|
+
That block runs when the application boots, and every time there is a reload.
|
12464
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12465
|
+
|
12466
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12467
|
+
Rails autoloads and reloads.
|
12468
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12469
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12470
|
+
|
12471
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12472
|
+
to be an error condition in future versions of Rails.
|
12473
|
+
|
12474
|
+
Reloading does not reboot the application, and therefore code executed during
|
12475
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12476
|
+
the expected changes won't be reflected in that stale Module object.
|
12477
|
+
|
12478
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12479
|
+
|
12480
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12481
|
+
callback this way:
|
12482
|
+
|
12483
|
+
Rails.application.reloader.to_prepare do
|
12484
|
+
# Autoload classes and modules needed at boot time here.
|
12485
|
+
end
|
12486
|
+
|
12487
|
+
That block runs when the application boots, and every time there is a reload.
|
12488
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12489
|
+
|
12490
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12491
|
+
Rails autoloads and reloads.
|
12492
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12493
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12494
|
+
|
12495
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12496
|
+
to be an error condition in future versions of Rails.
|
12497
|
+
|
12498
|
+
Reloading does not reboot the application, and therefore code executed during
|
12499
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12500
|
+
the expected changes won't be reflected in that stale Module object.
|
12501
|
+
|
12502
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12503
|
+
|
12504
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12505
|
+
callback this way:
|
12506
|
+
|
12507
|
+
Rails.application.reloader.to_prepare do
|
12508
|
+
# Autoload classes and modules needed at boot time here.
|
12509
|
+
end
|
12510
|
+
|
12511
|
+
That block runs when the application boots, and every time there is a reload.
|
12512
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12513
|
+
|
12514
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12515
|
+
Rails autoloads and reloads.
|
12516
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12517
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12518
|
+
|
12519
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12520
|
+
to be an error condition in future versions of Rails.
|
12521
|
+
|
12522
|
+
Reloading does not reboot the application, and therefore code executed during
|
12523
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12524
|
+
the expected changes won't be reflected in that stale Module object.
|
12525
|
+
|
12526
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12527
|
+
|
12528
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12529
|
+
callback this way:
|
12530
|
+
|
12531
|
+
Rails.application.reloader.to_prepare do
|
12532
|
+
# Autoload classes and modules needed at boot time here.
|
12533
|
+
end
|
12534
|
+
|
12535
|
+
That block runs when the application boots, and every time there is a reload.
|
12536
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12537
|
+
|
12538
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12539
|
+
Rails autoloads and reloads.
|
12540
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12541
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12542
|
+
|
12543
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12544
|
+
to be an error condition in future versions of Rails.
|
12545
|
+
|
12546
|
+
Reloading does not reboot the application, and therefore code executed during
|
12547
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12548
|
+
the expected changes won't be reflected in that stale Module object.
|
12549
|
+
|
12550
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12551
|
+
|
12552
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12553
|
+
callback this way:
|
12554
|
+
|
12555
|
+
Rails.application.reloader.to_prepare do
|
12556
|
+
# Autoload classes and modules needed at boot time here.
|
12557
|
+
end
|
12558
|
+
|
12559
|
+
That block runs when the application boots, and every time there is a reload.
|
12560
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12561
|
+
|
12562
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12563
|
+
Rails autoloads and reloads.
|
12564
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12565
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12566
|
+
|
12567
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12568
|
+
to be an error condition in future versions of Rails.
|
12569
|
+
|
12570
|
+
Reloading does not reboot the application, and therefore code executed during
|
12571
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12572
|
+
the expected changes won't be reflected in that stale Module object.
|
12573
|
+
|
12574
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12575
|
+
|
12576
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12577
|
+
callback this way:
|
12578
|
+
|
12579
|
+
Rails.application.reloader.to_prepare do
|
12580
|
+
# Autoload classes and modules needed at boot time here.
|
12581
|
+
end
|
12582
|
+
|
12583
|
+
That block runs when the application boots, and every time there is a reload.
|
12584
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12585
|
+
|
12586
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12587
|
+
Rails autoloads and reloads.
|
12588
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12589
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12590
|
+
|
12591
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12592
|
+
to be an error condition in future versions of Rails.
|
12593
|
+
|
12594
|
+
Reloading does not reboot the application, and therefore code executed during
|
12595
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12596
|
+
the expected changes won't be reflected in that stale Module object.
|
12597
|
+
|
12598
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12599
|
+
|
12600
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12601
|
+
callback this way:
|
12602
|
+
|
12603
|
+
Rails.application.reloader.to_prepare do
|
12604
|
+
# Autoload classes and modules needed at boot time here.
|
12605
|
+
end
|
12606
|
+
|
12607
|
+
That block runs when the application boots, and every time there is a reload.
|
12608
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12609
|
+
|
12610
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12611
|
+
Rails autoloads and reloads.
|
12612
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12613
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12614
|
+
|
12615
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12616
|
+
to be an error condition in future versions of Rails.
|
12617
|
+
|
12618
|
+
Reloading does not reboot the application, and therefore code executed during
|
12619
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12620
|
+
the expected changes won't be reflected in that stale Module object.
|
12621
|
+
|
12622
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12623
|
+
|
12624
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12625
|
+
callback this way:
|
12626
|
+
|
12627
|
+
Rails.application.reloader.to_prepare do
|
12628
|
+
# Autoload classes and modules needed at boot time here.
|
12629
|
+
end
|
12630
|
+
|
12631
|
+
That block runs when the application boots, and every time there is a reload.
|
12632
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12633
|
+
|
12634
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12635
|
+
Rails autoloads and reloads.
|
12636
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12637
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12638
|
+
|
12639
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12640
|
+
to be an error condition in future versions of Rails.
|
12641
|
+
|
12642
|
+
Reloading does not reboot the application, and therefore code executed during
|
12643
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12644
|
+
the expected changes won't be reflected in that stale Module object.
|
12645
|
+
|
12646
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12647
|
+
|
12648
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12649
|
+
callback this way:
|
12650
|
+
|
12651
|
+
Rails.application.reloader.to_prepare do
|
12652
|
+
# Autoload classes and modules needed at boot time here.
|
12653
|
+
end
|
12654
|
+
|
12655
|
+
That block runs when the application boots, and every time there is a reload.
|
12656
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12657
|
+
|
12658
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12659
|
+
Rails autoloads and reloads.
|
12660
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12661
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12662
|
+
|
12663
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12664
|
+
to be an error condition in future versions of Rails.
|
12665
|
+
|
12666
|
+
Reloading does not reboot the application, and therefore code executed during
|
12667
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12668
|
+
the expected changes won't be reflected in that stale Module object.
|
12669
|
+
|
12670
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12671
|
+
|
12672
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12673
|
+
callback this way:
|
12674
|
+
|
12675
|
+
Rails.application.reloader.to_prepare do
|
12676
|
+
# Autoload classes and modules needed at boot time here.
|
12677
|
+
end
|
12678
|
+
|
12679
|
+
That block runs when the application boots, and every time there is a reload.
|
12680
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12681
|
+
|
12682
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12683
|
+
Rails autoloads and reloads.
|
12684
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12685
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12686
|
+
|
12687
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12688
|
+
to be an error condition in future versions of Rails.
|
12689
|
+
|
12690
|
+
Reloading does not reboot the application, and therefore code executed during
|
12691
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12692
|
+
the expected changes won't be reflected in that stale Module object.
|
12693
|
+
|
12694
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12695
|
+
|
12696
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12697
|
+
callback this way:
|
12698
|
+
|
12699
|
+
Rails.application.reloader.to_prepare do
|
12700
|
+
# Autoload classes and modules needed at boot time here.
|
12701
|
+
end
|
12702
|
+
|
12703
|
+
That block runs when the application boots, and every time there is a reload.
|
12704
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12705
|
+
|
12706
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12707
|
+
Rails autoloads and reloads.
|
12708
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12709
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12710
|
+
|
12711
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12712
|
+
to be an error condition in future versions of Rails.
|
12713
|
+
|
12714
|
+
Reloading does not reboot the application, and therefore code executed during
|
12715
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12716
|
+
the expected changes won't be reflected in that stale Module object.
|
12717
|
+
|
12718
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12719
|
+
|
12720
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12721
|
+
callback this way:
|
12722
|
+
|
12723
|
+
Rails.application.reloader.to_prepare do
|
12724
|
+
# Autoload classes and modules needed at boot time here.
|
12725
|
+
end
|
12726
|
+
|
12727
|
+
That block runs when the application boots, and every time there is a reload.
|
12728
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12729
|
+
|
12730
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12731
|
+
Rails autoloads and reloads.
|
12732
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12733
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12734
|
+
|
12735
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12736
|
+
to be an error condition in future versions of Rails.
|
12737
|
+
|
12738
|
+
Reloading does not reboot the application, and therefore code executed during
|
12739
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12740
|
+
the expected changes won't be reflected in that stale Module object.
|
12741
|
+
|
12742
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12743
|
+
|
12744
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12745
|
+
callback this way:
|
12746
|
+
|
12747
|
+
Rails.application.reloader.to_prepare do
|
12748
|
+
# Autoload classes and modules needed at boot time here.
|
12749
|
+
end
|
12750
|
+
|
12751
|
+
That block runs when the application boots, and every time there is a reload.
|
12752
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12753
|
+
|
12754
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12755
|
+
Rails autoloads and reloads.
|
12756
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12757
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12758
|
+
|
12759
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12760
|
+
to be an error condition in future versions of Rails.
|
12761
|
+
|
12762
|
+
Reloading does not reboot the application, and therefore code executed during
|
12763
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12764
|
+
the expected changes won't be reflected in that stale Module object.
|
12765
|
+
|
12766
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12767
|
+
|
12768
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12769
|
+
callback this way:
|
12770
|
+
|
12771
|
+
Rails.application.reloader.to_prepare do
|
12772
|
+
# Autoload classes and modules needed at boot time here.
|
12773
|
+
end
|
12774
|
+
|
12775
|
+
That block runs when the application boots, and every time there is a reload.
|
12776
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12777
|
+
|
12778
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12779
|
+
Rails autoloads and reloads.
|
12780
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12781
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12782
|
+
|
12783
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12784
|
+
to be an error condition in future versions of Rails.
|
12785
|
+
|
12786
|
+
Reloading does not reboot the application, and therefore code executed during
|
12787
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12788
|
+
the expected changes won't be reflected in that stale Module object.
|
12789
|
+
|
12790
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12791
|
+
|
12792
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12793
|
+
callback this way:
|
12794
|
+
|
12795
|
+
Rails.application.reloader.to_prepare do
|
12796
|
+
# Autoload classes and modules needed at boot time here.
|
12797
|
+
end
|
12798
|
+
|
12799
|
+
That block runs when the application boots, and every time there is a reload.
|
12800
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12801
|
+
|
12802
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12803
|
+
Rails autoloads and reloads.
|
12804
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12805
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12806
|
+
|
12807
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12808
|
+
to be an error condition in future versions of Rails.
|
12809
|
+
|
12810
|
+
Reloading does not reboot the application, and therefore code executed during
|
12811
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12812
|
+
the expected changes won't be reflected in that stale Module object.
|
12813
|
+
|
12814
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12815
|
+
|
12816
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12817
|
+
callback this way:
|
12818
|
+
|
12819
|
+
Rails.application.reloader.to_prepare do
|
12820
|
+
# Autoload classes and modules needed at boot time here.
|
12821
|
+
end
|
12822
|
+
|
12823
|
+
That block runs when the application boots, and every time there is a reload.
|
12824
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12825
|
+
|
12826
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12827
|
+
Rails autoloads and reloads.
|
12828
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12829
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12830
|
+
|
12831
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12832
|
+
to be an error condition in future versions of Rails.
|
12833
|
+
|
12834
|
+
Reloading does not reboot the application, and therefore code executed during
|
12835
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12836
|
+
the expected changes won't be reflected in that stale Module object.
|
12837
|
+
|
12838
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12839
|
+
|
12840
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12841
|
+
callback this way:
|
12842
|
+
|
12843
|
+
Rails.application.reloader.to_prepare do
|
12844
|
+
# Autoload classes and modules needed at boot time here.
|
12845
|
+
end
|
12846
|
+
|
12847
|
+
That block runs when the application boots, and every time there is a reload.
|
12848
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12849
|
+
|
12850
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12851
|
+
Rails autoloads and reloads.
|
12852
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12853
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12854
|
+
|
12855
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12856
|
+
to be an error condition in future versions of Rails.
|
12857
|
+
|
12858
|
+
Reloading does not reboot the application, and therefore code executed during
|
12859
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12860
|
+
the expected changes won't be reflected in that stale Module object.
|
12861
|
+
|
12862
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12863
|
+
|
12864
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12865
|
+
callback this way:
|
12866
|
+
|
12867
|
+
Rails.application.reloader.to_prepare do
|
12868
|
+
# Autoload classes and modules needed at boot time here.
|
12869
|
+
end
|
12870
|
+
|
12871
|
+
That block runs when the application boots, and every time there is a reload.
|
12872
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12873
|
+
|
12874
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12875
|
+
Rails autoloads and reloads.
|
12876
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12877
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12878
|
+
|
12879
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12880
|
+
to be an error condition in future versions of Rails.
|
12881
|
+
|
12882
|
+
Reloading does not reboot the application, and therefore code executed during
|
12883
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12884
|
+
the expected changes won't be reflected in that stale Module object.
|
12885
|
+
|
12886
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12887
|
+
|
12888
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12889
|
+
callback this way:
|
12890
|
+
|
12891
|
+
Rails.application.reloader.to_prepare do
|
12892
|
+
# Autoload classes and modules needed at boot time here.
|
12893
|
+
end
|
12894
|
+
|
12895
|
+
That block runs when the application boots, and every time there is a reload.
|
12896
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12897
|
+
|
12898
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12899
|
+
Rails autoloads and reloads.
|
12900
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12901
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12902
|
+
|
12903
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12904
|
+
to be an error condition in future versions of Rails.
|
12905
|
+
|
12906
|
+
Reloading does not reboot the application, and therefore code executed during
|
12907
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12908
|
+
the expected changes won't be reflected in that stale Module object.
|
12909
|
+
|
12910
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12911
|
+
|
12912
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12913
|
+
callback this way:
|
12914
|
+
|
12915
|
+
Rails.application.reloader.to_prepare do
|
12916
|
+
# Autoload classes and modules needed at boot time here.
|
12917
|
+
end
|
12918
|
+
|
12919
|
+
That block runs when the application boots, and every time there is a reload.
|
12920
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12921
|
+
|
12922
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12923
|
+
Rails autoloads and reloads.
|
12924
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12925
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12926
|
+
|
12927
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12928
|
+
to be an error condition in future versions of Rails.
|
12929
|
+
|
12930
|
+
Reloading does not reboot the application, and therefore code executed during
|
12931
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12932
|
+
the expected changes won't be reflected in that stale Module object.
|
12933
|
+
|
12934
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12935
|
+
|
12936
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12937
|
+
callback this way:
|
12938
|
+
|
12939
|
+
Rails.application.reloader.to_prepare do
|
12940
|
+
# Autoload classes and modules needed at boot time here.
|
12941
|
+
end
|
12942
|
+
|
12943
|
+
That block runs when the application boots, and every time there is a reload.
|
12944
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12945
|
+
|
12946
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12947
|
+
Rails autoloads and reloads.
|
12948
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12949
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12950
|
+
|
12951
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12952
|
+
to be an error condition in future versions of Rails.
|
12953
|
+
|
12954
|
+
Reloading does not reboot the application, and therefore code executed during
|
12955
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12956
|
+
the expected changes won't be reflected in that stale Module object.
|
12957
|
+
|
12958
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12959
|
+
|
12960
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12961
|
+
callback this way:
|
12962
|
+
|
12963
|
+
Rails.application.reloader.to_prepare do
|
12964
|
+
# Autoload classes and modules needed at boot time here.
|
12965
|
+
end
|
12966
|
+
|
12967
|
+
That block runs when the application boots, and every time there is a reload.
|
12968
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12969
|
+
|
12970
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12971
|
+
Rails autoloads and reloads.
|
12972
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12973
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12974
|
+
|
12975
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
12976
|
+
to be an error condition in future versions of Rails.
|
12977
|
+
|
12978
|
+
Reloading does not reboot the application, and therefore code executed during
|
12979
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
12980
|
+
the expected changes won't be reflected in that stale Module object.
|
12981
|
+
|
12982
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
12983
|
+
|
12984
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
12985
|
+
callback this way:
|
12986
|
+
|
12987
|
+
Rails.application.reloader.to_prepare do
|
12988
|
+
# Autoload classes and modules needed at boot time here.
|
12989
|
+
end
|
12990
|
+
|
12991
|
+
That block runs when the application boots, and every time there is a reload.
|
12992
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
12993
|
+
|
12994
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12995
|
+
Rails autoloads and reloads.
|
12996
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
12997
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
12998
|
+
|
12999
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13000
|
+
to be an error condition in future versions of Rails.
|
13001
|
+
|
13002
|
+
Reloading does not reboot the application, and therefore code executed during
|
13003
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13004
|
+
the expected changes won't be reflected in that stale Module object.
|
13005
|
+
|
13006
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13007
|
+
|
13008
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13009
|
+
callback this way:
|
13010
|
+
|
13011
|
+
Rails.application.reloader.to_prepare do
|
13012
|
+
# Autoload classes and modules needed at boot time here.
|
13013
|
+
end
|
13014
|
+
|
13015
|
+
That block runs when the application boots, and every time there is a reload.
|
13016
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13017
|
+
|
13018
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13019
|
+
Rails autoloads and reloads.
|
13020
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13021
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
13022
|
+
|
13023
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13024
|
+
to be an error condition in future versions of Rails.
|
13025
|
+
|
13026
|
+
Reloading does not reboot the application, and therefore code executed during
|
13027
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13028
|
+
the expected changes won't be reflected in that stale Module object.
|
13029
|
+
|
13030
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13031
|
+
|
13032
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13033
|
+
callback this way:
|
13034
|
+
|
13035
|
+
Rails.application.reloader.to_prepare do
|
13036
|
+
# Autoload classes and modules needed at boot time here.
|
13037
|
+
end
|
13038
|
+
|
13039
|
+
That block runs when the application boots, and every time there is a reload.
|
13040
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13041
|
+
|
13042
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13043
|
+
Rails autoloads and reloads.
|
13044
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13045
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
13046
|
+
|
13047
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13048
|
+
to be an error condition in future versions of Rails.
|
13049
|
+
|
13050
|
+
Reloading does not reboot the application, and therefore code executed during
|
13051
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13052
|
+
the expected changes won't be reflected in that stale Module object.
|
13053
|
+
|
13054
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13055
|
+
|
13056
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13057
|
+
callback this way:
|
13058
|
+
|
13059
|
+
Rails.application.reloader.to_prepare do
|
13060
|
+
# Autoload classes and modules needed at boot time here.
|
13061
|
+
end
|
13062
|
+
|
13063
|
+
That block runs when the application boots, and every time there is a reload.
|
13064
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13065
|
+
|
13066
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13067
|
+
Rails autoloads and reloads.
|
13068
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13069
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
13070
|
+
|
13071
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13072
|
+
to be an error condition in future versions of Rails.
|
13073
|
+
|
13074
|
+
Reloading does not reboot the application, and therefore code executed during
|
13075
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13076
|
+
the expected changes won't be reflected in that stale Module object.
|
13077
|
+
|
13078
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13079
|
+
|
13080
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13081
|
+
callback this way:
|
13082
|
+
|
13083
|
+
Rails.application.reloader.to_prepare do
|
13084
|
+
# Autoload classes and modules needed at boot time here.
|
13085
|
+
end
|
13086
|
+
|
13087
|
+
That block runs when the application boots, and every time there is a reload.
|
13088
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13089
|
+
|
13090
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13091
|
+
Rails autoloads and reloads.
|
13092
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13093
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
13094
|
+
|
13095
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13096
|
+
to be an error condition in future versions of Rails.
|
13097
|
+
|
13098
|
+
Reloading does not reboot the application, and therefore code executed during
|
13099
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13100
|
+
the expected changes won't be reflected in that stale Module object.
|
13101
|
+
|
13102
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13103
|
+
|
13104
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13105
|
+
callback this way:
|
13106
|
+
|
13107
|
+
Rails.application.reloader.to_prepare do
|
13108
|
+
# Autoload classes and modules needed at boot time here.
|
13109
|
+
end
|
13110
|
+
|
13111
|
+
That block runs when the application boots, and every time there is a reload.
|
13112
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13113
|
+
|
13114
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13115
|
+
Rails autoloads and reloads.
|
13116
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13117
|
+
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
13118
|
+
|
13119
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13120
|
+
to be an error condition in future versions of Rails.
|
13121
|
+
|
13122
|
+
Reloading does not reboot the application, and therefore code executed during
|
13123
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13124
|
+
the expected changes won't be reflected in that stale Module object.
|
13125
|
+
|
13126
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13127
|
+
|
13128
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13129
|
+
callback this way:
|
13130
|
+
|
13131
|
+
Rails.application.reloader.to_prepare do
|
13132
|
+
# Autoload classes and modules needed at boot time here.
|
13133
|
+
end
|
13134
|
+
|
13135
|
+
That block runs when the application boots, and every time there is a reload.
|
13136
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13137
|
+
|
12442
13138
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
12443
13139
|
Rails autoloads and reloads.
|
12444
13140
|
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: apidae
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean-Baptiste Vilain
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|