apidae 1.4.27 → 1.4.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ca7026d59321f3f6edf336fe807778fc3f907e9292a8dcd86518195ea76a48a
|
|
4
|
+
data.tar.gz: d6567ea0c1cd5fb21a028a98a29fbec0430903b9682aaf25a60a480b38652cd7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9431766168d0fc81820e9cade109d29ad4ec487edbc888086220cc45af06d0a20ec29abec54e383fbf8de8217f91b5880915e9c8d977fd2999a9964c562cb36d
|
|
7
|
+
data.tar.gz: d2abf3f026c8433bdf9949c8d4c0da877c5867d3b59d2cb3609d6ba18e4676854c84c75a3a1f25486f16c9d0d67ad8b99cd658c3ead8cf345d5ef413bc2014f4
|
data/app/models/apidae/obj.rb
CHANGED
|
@@ -2,6 +2,7 @@ module Apidae
|
|
|
2
2
|
class Obj < ActiveRecord::Base
|
|
3
3
|
|
|
4
4
|
belongs_to :town, class_name: 'Apidae::Town', foreign_key: :town_insee_code, primary_key: :insee_code, optional: true
|
|
5
|
+
belongs_to :apidae_town, class_name: 'Apidae::Town', foreign_key: :apidae_town_id, primary_key: :apidae_id, optional: true
|
|
5
6
|
has_many :apidae_selection_objects, class_name: 'Apidae::SelectionObject', foreign_key: :apidae_object_id
|
|
6
7
|
has_many :selections, class_name: 'Apidae::Selection', source: :apidae_selection, through: :apidae_selection_objects
|
|
7
8
|
|
|
@@ -11,7 +12,7 @@ module Apidae
|
|
|
11
12
|
attr_accessor :skip_archiving
|
|
12
13
|
|
|
13
14
|
store_accessor :title_data, :title
|
|
14
|
-
store_accessor :owner_data, :owner_name, :owner_id, :polls
|
|
15
|
+
store_accessor :owner_data, :owner_name, :owner_id, :state, :polls
|
|
15
16
|
store_accessor :description_data, :short_desc, :long_desc, :theme_desc, :private_desc, :accessibility_desc
|
|
16
17
|
store_accessor :pictures_data, :pictures
|
|
17
18
|
store_accessor :attachments_data, :attachments
|
|
@@ -236,12 +237,14 @@ module Apidae
|
|
|
236
237
|
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
238
|
apidae_obj.apidae_type = object_data[:type]
|
|
238
239
|
apidae_obj.apidae_subtype = ApidaeDataParser.node_id(object_data[type_fields[:node]], type_fields[:subtype])
|
|
240
|
+
apidae_obj.state = object_data[:state]
|
|
239
241
|
apidae_obj.title_data = ApidaeDataParser.parse_title(object_data, *locales)
|
|
240
242
|
apidae_obj.description_data = ApidaeDataParser.parse_desc_data(object_data[:presentation], object_data[:donneesPrivees], object_data[:prestations], *locales)
|
|
241
243
|
apidae_obj.contact_data = ApidaeDataParser.parse_contact_data(object_data[:informations], object_data[:contacts])
|
|
242
244
|
apidae_obj.location_data = ApidaeDataParser.parse_location_data(object_data[:localisation], object_data[type_fields[:node]],
|
|
243
245
|
object_data[:territoires])
|
|
244
246
|
apidae_obj.town = ApidaeDataParser.parse_town(object_data[:localisation])
|
|
247
|
+
apidae_obj.apidae_town_id = apidae_obj.town&.apidae_id
|
|
245
248
|
apidae_obj.openings_data = ApidaeDataParser.parse_openings(object_data[:ouverture], object_data[:datesOuverture], *locales)
|
|
246
249
|
apidae_obj.rates_data = ApidaeDataParser.parse_rates(object_data[:descriptionTarif], *locales)
|
|
247
250
|
apidae_obj.booking_data = ApidaeDataParser.parse_booking(object_data[:reservation], object_data[:visites], *locales)
|
data/lib/apidae/version.rb
CHANGED
|
@@ -15440,6 +15440,870 @@ 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
|
+
|
|
16115
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16116
|
+
Rails autoloads and reloads.
|
|
16117
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16118
|
+
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.
|
|
16119
|
+
|
|
16120
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16121
|
+
to be an error condition in future versions of Rails.
|
|
16122
|
+
|
|
16123
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16124
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16125
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16126
|
+
|
|
16127
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16128
|
+
|
|
16129
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16130
|
+
callback this way:
|
|
16131
|
+
|
|
16132
|
+
Rails.application.reloader.to_prepare do
|
|
16133
|
+
# Autoload classes and modules needed at boot time here.
|
|
16134
|
+
end
|
|
16135
|
+
|
|
16136
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16137
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16138
|
+
|
|
16139
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16140
|
+
Rails autoloads and reloads.
|
|
16141
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16142
|
+
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.
|
|
16143
|
+
|
|
16144
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16145
|
+
to be an error condition in future versions of Rails.
|
|
16146
|
+
|
|
16147
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16148
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16149
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16150
|
+
|
|
16151
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16152
|
+
|
|
16153
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16154
|
+
callback this way:
|
|
16155
|
+
|
|
16156
|
+
Rails.application.reloader.to_prepare do
|
|
16157
|
+
# Autoload classes and modules needed at boot time here.
|
|
16158
|
+
end
|
|
16159
|
+
|
|
16160
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16161
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16162
|
+
|
|
16163
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16164
|
+
Rails autoloads and reloads.
|
|
16165
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16166
|
+
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.
|
|
16167
|
+
|
|
16168
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16169
|
+
to be an error condition in future versions of Rails.
|
|
16170
|
+
|
|
16171
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16172
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16173
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16174
|
+
|
|
16175
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16176
|
+
|
|
16177
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16178
|
+
callback this way:
|
|
16179
|
+
|
|
16180
|
+
Rails.application.reloader.to_prepare do
|
|
16181
|
+
# Autoload classes and modules needed at boot time here.
|
|
16182
|
+
end
|
|
16183
|
+
|
|
16184
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16185
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16186
|
+
|
|
16187
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16188
|
+
Rails autoloads and reloads.
|
|
16189
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16190
|
+
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.
|
|
16191
|
+
|
|
16192
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16193
|
+
to be an error condition in future versions of Rails.
|
|
16194
|
+
|
|
16195
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16196
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16197
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16198
|
+
|
|
16199
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16200
|
+
|
|
16201
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16202
|
+
callback this way:
|
|
16203
|
+
|
|
16204
|
+
Rails.application.reloader.to_prepare do
|
|
16205
|
+
# Autoload classes and modules needed at boot time here.
|
|
16206
|
+
end
|
|
16207
|
+
|
|
16208
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16209
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16210
|
+
|
|
16211
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16212
|
+
Rails autoloads and reloads.
|
|
16213
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16214
|
+
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.
|
|
16215
|
+
|
|
16216
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16217
|
+
to be an error condition in future versions of Rails.
|
|
16218
|
+
|
|
16219
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16220
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16221
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16222
|
+
|
|
16223
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16224
|
+
|
|
16225
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16226
|
+
callback this way:
|
|
16227
|
+
|
|
16228
|
+
Rails.application.reloader.to_prepare do
|
|
16229
|
+
# Autoload classes and modules needed at boot time here.
|
|
16230
|
+
end
|
|
16231
|
+
|
|
16232
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16233
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16234
|
+
|
|
16235
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16236
|
+
Rails autoloads and reloads.
|
|
16237
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16238
|
+
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.
|
|
16239
|
+
|
|
16240
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16241
|
+
to be an error condition in future versions of Rails.
|
|
16242
|
+
|
|
16243
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16244
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16245
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16246
|
+
|
|
16247
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16248
|
+
|
|
16249
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16250
|
+
callback this way:
|
|
16251
|
+
|
|
16252
|
+
Rails.application.reloader.to_prepare do
|
|
16253
|
+
# Autoload classes and modules needed at boot time here.
|
|
16254
|
+
end
|
|
16255
|
+
|
|
16256
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16257
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16258
|
+
|
|
16259
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16260
|
+
Rails autoloads and reloads.
|
|
16261
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16262
|
+
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.
|
|
16263
|
+
|
|
16264
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16265
|
+
to be an error condition in future versions of Rails.
|
|
16266
|
+
|
|
16267
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16268
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16269
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16270
|
+
|
|
16271
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16272
|
+
|
|
16273
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16274
|
+
callback this way:
|
|
16275
|
+
|
|
16276
|
+
Rails.application.reloader.to_prepare do
|
|
16277
|
+
# Autoload classes and modules needed at boot time here.
|
|
16278
|
+
end
|
|
16279
|
+
|
|
16280
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16281
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16282
|
+
|
|
16283
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
16284
|
+
Rails autoloads and reloads.
|
|
16285
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
16286
|
+
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.
|
|
16287
|
+
|
|
16288
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
16289
|
+
to be an error condition in future versions of Rails.
|
|
16290
|
+
|
|
16291
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
16292
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
16293
|
+
the expected changes won't be reflected in that stale Module object.
|
|
16294
|
+
|
|
16295
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
16296
|
+
|
|
16297
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
16298
|
+
callback this way:
|
|
16299
|
+
|
|
16300
|
+
Rails.application.reloader.to_prepare do
|
|
16301
|
+
# Autoload classes and modules needed at boot time here.
|
|
16302
|
+
end
|
|
16303
|
+
|
|
16304
|
+
That block runs when the application boots, and every time there is a reload.
|
|
16305
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
16306
|
+
|
|
15443
16307
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15444
16308
|
Rails autoloads and reloads.
|
|
15445
16309
|
(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.29
|
|
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-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -193,6 +193,7 @@ files:
|
|
|
193
193
|
- db/migrate/20210607214647_add_apidae_type_to_apidae_territories.rb
|
|
194
194
|
- db/migrate/20230206113335_add_prev_data_to_apidae_objs.rb
|
|
195
195
|
- db/migrate/20250323201235_change_objs_certifications_structure.rb
|
|
196
|
+
- db/migrate/20260911184620_add_apidae_town_id_to_apidae_objs.rb
|
|
196
197
|
- lib/apidae.rb
|
|
197
198
|
- lib/apidae/engine.rb
|
|
198
199
|
- lib/apidae/version.rb
|