apidae 1.4.27 → 1.4.28
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 +4 -4
- data/app/models/apidae/obj.rb +2 -1
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +672 -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: 02a75c98465e95a1f4c085ba3c9bb4f470492d21f36144e0bc7ce3f4443abd43
|
|
4
|
+
data.tar.gz: 6aa2d6e64128804f1ea79dcf5e08d31c14a37134683c803fa21d78c01802db60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f6d21a634071a39bb6f2ec299672086a640e5c01230220c26c11fc0c90623026dfdc01c4a7f91613c4546626d28fa21634cde5319df893fd360df8565bdef83
|
|
7
|
+
data.tar.gz: bc3b53e312a327923b8e02190b0c4fac3ab62b68477d1fc20b2475eba6507bddbc6c05c723928181582281bcdb3a18d4669a756b1cf6eda1992366b04bfa69fb
|
data/app/models/apidae/obj.rb
CHANGED
|
@@ -11,7 +11,7 @@ module Apidae
|
|
|
11
11
|
attr_accessor :skip_archiving
|
|
12
12
|
|
|
13
13
|
store_accessor :title_data, :title
|
|
14
|
-
store_accessor :owner_data, :owner_name, :owner_id, :polls
|
|
14
|
+
store_accessor :owner_data, :owner_name, :owner_id, :state, :polls
|
|
15
15
|
store_accessor :description_data, :short_desc, :long_desc, :theme_desc, :private_desc, :accessibility_desc
|
|
16
16
|
store_accessor :pictures_data, :pictures
|
|
17
17
|
store_accessor :attachments_data, :attachments
|
|
@@ -236,6 +236,7 @@ module Apidae
|
|
|
236
236
|
apidae_obj.owner_data = ApidaeDataParser.parse_owner_data(object_data[:gestion][:membreProprietaire], object_data[:enquete]) unless (object_data[:gestion].blank? && object_data[:enquete].blank?)
|
|
237
237
|
apidae_obj.apidae_type = object_data[:type]
|
|
238
238
|
apidae_obj.apidae_subtype = ApidaeDataParser.node_id(object_data[type_fields[:node]], type_fields[:subtype])
|
|
239
|
+
apidae_obj.state = object_data[:state]
|
|
239
240
|
apidae_obj.title_data = ApidaeDataParser.parse_title(object_data, *locales)
|
|
240
241
|
apidae_obj.description_data = ApidaeDataParser.parse_desc_data(object_data[:presentation], object_data[:donneesPrivees], object_data[:prestations], *locales)
|
|
241
242
|
apidae_obj.contact_data = ApidaeDataParser.parse_contact_data(object_data[:informations], object_data[:contacts])
|
data/lib/apidae/version.rb
CHANGED
|
@@ -15440,6 +15440,678 @@ callback this way:
|
|
|
15440
15440
|
That block runs when the application boots, and every time there is a reload.
|
|
15441
15441
|
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15442
15442
|
|
|
15443
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15444
|
+
Rails autoloads and reloads.
|
|
15445
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15446
|
+
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.
|
|
15447
|
+
|
|
15448
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15449
|
+
to be an error condition in future versions of Rails.
|
|
15450
|
+
|
|
15451
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15452
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15453
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15454
|
+
|
|
15455
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15456
|
+
|
|
15457
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15458
|
+
callback this way:
|
|
15459
|
+
|
|
15460
|
+
Rails.application.reloader.to_prepare do
|
|
15461
|
+
# Autoload classes and modules needed at boot time here.
|
|
15462
|
+
end
|
|
15463
|
+
|
|
15464
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15465
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15466
|
+
|
|
15467
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15468
|
+
Rails autoloads and reloads.
|
|
15469
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15470
|
+
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.
|
|
15471
|
+
|
|
15472
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15473
|
+
to be an error condition in future versions of Rails.
|
|
15474
|
+
|
|
15475
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15476
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15477
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15478
|
+
|
|
15479
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15480
|
+
|
|
15481
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15482
|
+
callback this way:
|
|
15483
|
+
|
|
15484
|
+
Rails.application.reloader.to_prepare do
|
|
15485
|
+
# Autoload classes and modules needed at boot time here.
|
|
15486
|
+
end
|
|
15487
|
+
|
|
15488
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15489
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15490
|
+
|
|
15491
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15492
|
+
Rails autoloads and reloads.
|
|
15493
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15494
|
+
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.
|
|
15495
|
+
|
|
15496
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15497
|
+
to be an error condition in future versions of Rails.
|
|
15498
|
+
|
|
15499
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15500
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15501
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15502
|
+
|
|
15503
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15504
|
+
|
|
15505
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15506
|
+
callback this way:
|
|
15507
|
+
|
|
15508
|
+
Rails.application.reloader.to_prepare do
|
|
15509
|
+
# Autoload classes and modules needed at boot time here.
|
|
15510
|
+
end
|
|
15511
|
+
|
|
15512
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15513
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15514
|
+
|
|
15515
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15516
|
+
Rails autoloads and reloads.
|
|
15517
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15518
|
+
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.
|
|
15519
|
+
|
|
15520
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15521
|
+
to be an error condition in future versions of Rails.
|
|
15522
|
+
|
|
15523
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15524
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15525
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15526
|
+
|
|
15527
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15528
|
+
|
|
15529
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15530
|
+
callback this way:
|
|
15531
|
+
|
|
15532
|
+
Rails.application.reloader.to_prepare do
|
|
15533
|
+
# Autoload classes and modules needed at boot time here.
|
|
15534
|
+
end
|
|
15535
|
+
|
|
15536
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15537
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15538
|
+
|
|
15539
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15540
|
+
Rails autoloads and reloads.
|
|
15541
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15542
|
+
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.
|
|
15543
|
+
|
|
15544
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15545
|
+
to be an error condition in future versions of Rails.
|
|
15546
|
+
|
|
15547
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15548
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15549
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15550
|
+
|
|
15551
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15552
|
+
|
|
15553
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15554
|
+
callback this way:
|
|
15555
|
+
|
|
15556
|
+
Rails.application.reloader.to_prepare do
|
|
15557
|
+
# Autoload classes and modules needed at boot time here.
|
|
15558
|
+
end
|
|
15559
|
+
|
|
15560
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15561
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15562
|
+
|
|
15563
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15564
|
+
Rails autoloads and reloads.
|
|
15565
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15566
|
+
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.
|
|
15567
|
+
|
|
15568
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15569
|
+
to be an error condition in future versions of Rails.
|
|
15570
|
+
|
|
15571
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15572
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15573
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15574
|
+
|
|
15575
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15576
|
+
|
|
15577
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15578
|
+
callback this way:
|
|
15579
|
+
|
|
15580
|
+
Rails.application.reloader.to_prepare do
|
|
15581
|
+
# Autoload classes and modules needed at boot time here.
|
|
15582
|
+
end
|
|
15583
|
+
|
|
15584
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15585
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15586
|
+
|
|
15587
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15588
|
+
Rails autoloads and reloads.
|
|
15589
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15590
|
+
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.
|
|
15591
|
+
|
|
15592
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15593
|
+
to be an error condition in future versions of Rails.
|
|
15594
|
+
|
|
15595
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15596
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15597
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15598
|
+
|
|
15599
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15600
|
+
|
|
15601
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15602
|
+
callback this way:
|
|
15603
|
+
|
|
15604
|
+
Rails.application.reloader.to_prepare do
|
|
15605
|
+
# Autoload classes and modules needed at boot time here.
|
|
15606
|
+
end
|
|
15607
|
+
|
|
15608
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15609
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15610
|
+
|
|
15611
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15612
|
+
Rails autoloads and reloads.
|
|
15613
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15614
|
+
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.
|
|
15615
|
+
|
|
15616
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15617
|
+
to be an error condition in future versions of Rails.
|
|
15618
|
+
|
|
15619
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15620
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15621
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15622
|
+
|
|
15623
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15624
|
+
|
|
15625
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15626
|
+
callback this way:
|
|
15627
|
+
|
|
15628
|
+
Rails.application.reloader.to_prepare do
|
|
15629
|
+
# Autoload classes and modules needed at boot time here.
|
|
15630
|
+
end
|
|
15631
|
+
|
|
15632
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15633
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15634
|
+
|
|
15635
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15636
|
+
Rails autoloads and reloads.
|
|
15637
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15638
|
+
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.
|
|
15639
|
+
|
|
15640
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15641
|
+
to be an error condition in future versions of Rails.
|
|
15642
|
+
|
|
15643
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15644
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15645
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15646
|
+
|
|
15647
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15648
|
+
|
|
15649
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15650
|
+
callback this way:
|
|
15651
|
+
|
|
15652
|
+
Rails.application.reloader.to_prepare do
|
|
15653
|
+
# Autoload classes and modules needed at boot time here.
|
|
15654
|
+
end
|
|
15655
|
+
|
|
15656
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15657
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15658
|
+
|
|
15659
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15660
|
+
Rails autoloads and reloads.
|
|
15661
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15662
|
+
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.
|
|
15663
|
+
|
|
15664
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15665
|
+
to be an error condition in future versions of Rails.
|
|
15666
|
+
|
|
15667
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15668
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15669
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15670
|
+
|
|
15671
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15672
|
+
|
|
15673
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15674
|
+
callback this way:
|
|
15675
|
+
|
|
15676
|
+
Rails.application.reloader.to_prepare do
|
|
15677
|
+
# Autoload classes and modules needed at boot time here.
|
|
15678
|
+
end
|
|
15679
|
+
|
|
15680
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15681
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15682
|
+
|
|
15683
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15684
|
+
Rails autoloads and reloads.
|
|
15685
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15686
|
+
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.
|
|
15687
|
+
|
|
15688
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15689
|
+
to be an error condition in future versions of Rails.
|
|
15690
|
+
|
|
15691
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15692
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15693
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15694
|
+
|
|
15695
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15696
|
+
|
|
15697
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15698
|
+
callback this way:
|
|
15699
|
+
|
|
15700
|
+
Rails.application.reloader.to_prepare do
|
|
15701
|
+
# Autoload classes and modules needed at boot time here.
|
|
15702
|
+
end
|
|
15703
|
+
|
|
15704
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15705
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15706
|
+
|
|
15707
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15708
|
+
Rails autoloads and reloads.
|
|
15709
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15710
|
+
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.
|
|
15711
|
+
|
|
15712
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15713
|
+
to be an error condition in future versions of Rails.
|
|
15714
|
+
|
|
15715
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15716
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15717
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15718
|
+
|
|
15719
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15720
|
+
|
|
15721
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15722
|
+
callback this way:
|
|
15723
|
+
|
|
15724
|
+
Rails.application.reloader.to_prepare do
|
|
15725
|
+
# Autoload classes and modules needed at boot time here.
|
|
15726
|
+
end
|
|
15727
|
+
|
|
15728
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15729
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15730
|
+
|
|
15731
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15732
|
+
Rails autoloads and reloads.
|
|
15733
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15734
|
+
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.
|
|
15735
|
+
|
|
15736
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15737
|
+
to be an error condition in future versions of Rails.
|
|
15738
|
+
|
|
15739
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15740
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15741
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15742
|
+
|
|
15743
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15744
|
+
|
|
15745
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15746
|
+
callback this way:
|
|
15747
|
+
|
|
15748
|
+
Rails.application.reloader.to_prepare do
|
|
15749
|
+
# Autoload classes and modules needed at boot time here.
|
|
15750
|
+
end
|
|
15751
|
+
|
|
15752
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15753
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15754
|
+
|
|
15755
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15756
|
+
Rails autoloads and reloads.
|
|
15757
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15758
|
+
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.
|
|
15759
|
+
|
|
15760
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15761
|
+
to be an error condition in future versions of Rails.
|
|
15762
|
+
|
|
15763
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15764
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15765
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15766
|
+
|
|
15767
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15768
|
+
|
|
15769
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15770
|
+
callback this way:
|
|
15771
|
+
|
|
15772
|
+
Rails.application.reloader.to_prepare do
|
|
15773
|
+
# Autoload classes and modules needed at boot time here.
|
|
15774
|
+
end
|
|
15775
|
+
|
|
15776
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15777
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15778
|
+
|
|
15779
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15780
|
+
Rails autoloads and reloads.
|
|
15781
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15782
|
+
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.
|
|
15783
|
+
|
|
15784
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15785
|
+
to be an error condition in future versions of Rails.
|
|
15786
|
+
|
|
15787
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15788
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15789
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15790
|
+
|
|
15791
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15792
|
+
|
|
15793
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15794
|
+
callback this way:
|
|
15795
|
+
|
|
15796
|
+
Rails.application.reloader.to_prepare do
|
|
15797
|
+
# Autoload classes and modules needed at boot time here.
|
|
15798
|
+
end
|
|
15799
|
+
|
|
15800
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15801
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15802
|
+
|
|
15803
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15804
|
+
Rails autoloads and reloads.
|
|
15805
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15806
|
+
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.
|
|
15807
|
+
|
|
15808
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15809
|
+
to be an error condition in future versions of Rails.
|
|
15810
|
+
|
|
15811
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15812
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15813
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15814
|
+
|
|
15815
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15816
|
+
|
|
15817
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15818
|
+
callback this way:
|
|
15819
|
+
|
|
15820
|
+
Rails.application.reloader.to_prepare do
|
|
15821
|
+
# Autoload classes and modules needed at boot time here.
|
|
15822
|
+
end
|
|
15823
|
+
|
|
15824
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15825
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15826
|
+
|
|
15827
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15828
|
+
Rails autoloads and reloads.
|
|
15829
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15830
|
+
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.
|
|
15831
|
+
|
|
15832
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15833
|
+
to be an error condition in future versions of Rails.
|
|
15834
|
+
|
|
15835
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15836
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15837
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15838
|
+
|
|
15839
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15840
|
+
|
|
15841
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15842
|
+
callback this way:
|
|
15843
|
+
|
|
15844
|
+
Rails.application.reloader.to_prepare do
|
|
15845
|
+
# Autoload classes and modules needed at boot time here.
|
|
15846
|
+
end
|
|
15847
|
+
|
|
15848
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15849
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15850
|
+
|
|
15851
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15852
|
+
Rails autoloads and reloads.
|
|
15853
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15854
|
+
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.
|
|
15855
|
+
|
|
15856
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15857
|
+
to be an error condition in future versions of Rails.
|
|
15858
|
+
|
|
15859
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15860
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15861
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15862
|
+
|
|
15863
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15864
|
+
|
|
15865
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15866
|
+
callback this way:
|
|
15867
|
+
|
|
15868
|
+
Rails.application.reloader.to_prepare do
|
|
15869
|
+
# Autoload classes and modules needed at boot time here.
|
|
15870
|
+
end
|
|
15871
|
+
|
|
15872
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15873
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15874
|
+
|
|
15875
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15876
|
+
Rails autoloads and reloads.
|
|
15877
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15878
|
+
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.
|
|
15879
|
+
|
|
15880
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15881
|
+
to be an error condition in future versions of Rails.
|
|
15882
|
+
|
|
15883
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15884
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15885
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15886
|
+
|
|
15887
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15888
|
+
|
|
15889
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15890
|
+
callback this way:
|
|
15891
|
+
|
|
15892
|
+
Rails.application.reloader.to_prepare do
|
|
15893
|
+
# Autoload classes and modules needed at boot time here.
|
|
15894
|
+
end
|
|
15895
|
+
|
|
15896
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15897
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15898
|
+
|
|
15899
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15900
|
+
Rails autoloads and reloads.
|
|
15901
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15902
|
+
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.
|
|
15903
|
+
|
|
15904
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15905
|
+
to be an error condition in future versions of Rails.
|
|
15906
|
+
|
|
15907
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15908
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15909
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15910
|
+
|
|
15911
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15912
|
+
|
|
15913
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15914
|
+
callback this way:
|
|
15915
|
+
|
|
15916
|
+
Rails.application.reloader.to_prepare do
|
|
15917
|
+
# Autoload classes and modules needed at boot time here.
|
|
15918
|
+
end
|
|
15919
|
+
|
|
15920
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15921
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15922
|
+
|
|
15923
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15924
|
+
Rails autoloads and reloads.
|
|
15925
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15926
|
+
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.
|
|
15927
|
+
|
|
15928
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15929
|
+
to be an error condition in future versions of Rails.
|
|
15930
|
+
|
|
15931
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15932
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15933
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15934
|
+
|
|
15935
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15936
|
+
|
|
15937
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15938
|
+
callback this way:
|
|
15939
|
+
|
|
15940
|
+
Rails.application.reloader.to_prepare do
|
|
15941
|
+
# Autoload classes and modules needed at boot time here.
|
|
15942
|
+
end
|
|
15943
|
+
|
|
15944
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15945
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15946
|
+
|
|
15947
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15948
|
+
Rails autoloads and reloads.
|
|
15949
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15950
|
+
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.
|
|
15951
|
+
|
|
15952
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15953
|
+
to be an error condition in future versions of Rails.
|
|
15954
|
+
|
|
15955
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15956
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15957
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15958
|
+
|
|
15959
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15960
|
+
|
|
15961
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15962
|
+
callback this way:
|
|
15963
|
+
|
|
15964
|
+
Rails.application.reloader.to_prepare do
|
|
15965
|
+
# Autoload classes and modules needed at boot time here.
|
|
15966
|
+
end
|
|
15967
|
+
|
|
15968
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15969
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15970
|
+
|
|
15971
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15972
|
+
Rails autoloads and reloads.
|
|
15973
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15974
|
+
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.
|
|
15975
|
+
|
|
15976
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15977
|
+
to be an error condition in future versions of Rails.
|
|
15978
|
+
|
|
15979
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15980
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15981
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15982
|
+
|
|
15983
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15984
|
+
|
|
15985
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15986
|
+
callback this way:
|
|
15987
|
+
|
|
15988
|
+
Rails.application.reloader.to_prepare do
|
|
15989
|
+
# Autoload classes and modules needed at boot time here.
|
|
15990
|
+
end
|
|
15991
|
+
|
|
15992
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15993
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15994
|
+
|
|
15995
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15996
|
+
Rails autoloads and reloads.
|
|
15997
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15998
|
+
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.
|
|
15999
|
+
|
|
16000
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16001
|
+
to be an error condition in future versions of Rails.
|
|
16002
|
+
|
|
16003
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16004
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16005
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16006
|
+
|
|
16007
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16008
|
+
|
|
16009
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16010
|
+
callback this way:
|
|
16011
|
+
|
|
16012
|
+
Rails.application.reloader.to_prepare do
|
|
16013
|
+
# Autoload classes and modules needed at boot time here.
|
|
16014
|
+
end
|
|
16015
|
+
|
|
16016
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16017
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16018
|
+
|
|
16019
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16020
|
+
Rails autoloads and reloads.
|
|
16021
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16022
|
+
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.
|
|
16023
|
+
|
|
16024
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16025
|
+
to be an error condition in future versions of Rails.
|
|
16026
|
+
|
|
16027
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16028
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16029
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16030
|
+
|
|
16031
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16032
|
+
|
|
16033
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16034
|
+
callback this way:
|
|
16035
|
+
|
|
16036
|
+
Rails.application.reloader.to_prepare do
|
|
16037
|
+
# Autoload classes and modules needed at boot time here.
|
|
16038
|
+
end
|
|
16039
|
+
|
|
16040
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16041
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16042
|
+
|
|
16043
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16044
|
+
Rails autoloads and reloads.
|
|
16045
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16046
|
+
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.
|
|
16047
|
+
|
|
16048
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16049
|
+
to be an error condition in future versions of Rails.
|
|
16050
|
+
|
|
16051
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16052
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16053
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16054
|
+
|
|
16055
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16056
|
+
|
|
16057
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16058
|
+
callback this way:
|
|
16059
|
+
|
|
16060
|
+
Rails.application.reloader.to_prepare do
|
|
16061
|
+
# Autoload classes and modules needed at boot time here.
|
|
16062
|
+
end
|
|
16063
|
+
|
|
16064
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16065
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16066
|
+
|
|
16067
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16068
|
+
Rails autoloads and reloads.
|
|
16069
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16070
|
+
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.
|
|
16071
|
+
|
|
16072
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16073
|
+
to be an error condition in future versions of Rails.
|
|
16074
|
+
|
|
16075
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16076
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16077
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16078
|
+
|
|
16079
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16080
|
+
|
|
16081
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16082
|
+
callback this way:
|
|
16083
|
+
|
|
16084
|
+
Rails.application.reloader.to_prepare do
|
|
16085
|
+
# Autoload classes and modules needed at boot time here.
|
|
16086
|
+
end
|
|
16087
|
+
|
|
16088
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16089
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16090
|
+
|
|
16091
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16092
|
+
Rails autoloads and reloads.
|
|
16093
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16094
|
+
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.
|
|
16095
|
+
|
|
16096
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16097
|
+
to be an error condition in future versions of Rails.
|
|
16098
|
+
|
|
16099
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16100
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16101
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16102
|
+
|
|
16103
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16104
|
+
|
|
16105
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16106
|
+
callback this way:
|
|
16107
|
+
|
|
16108
|
+
Rails.application.reloader.to_prepare do
|
|
16109
|
+
# Autoload classes and modules needed at boot time here.
|
|
16110
|
+
end
|
|
16111
|
+
|
|
16112
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16113
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16114
|
+
|
|
15443
16115
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15444
16116
|
Rails autoloads and reloads.
|
|
15445
16117
|
(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.28
|
|
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: 2026-
|
|
11
|
+
date: 2026-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|