apidae 1.4.23 → 1.4.25
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/apidae_data_parser.rb +8 -3
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +936 -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: bdcb46bb6293716d7928b4dfd72ae46b8fdba080612f609ee47c75baf820c2c0
|
|
4
|
+
data.tar.gz: be0d411b043a853272614dfeeeba458ed39e02faea2f0aad0b8b0c0135126ec6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8520e1cc5e2ab2685140dd80ce021394b92bfbf10f9050c7704883e84b510f3b93aab794c75ab2338b906735b7a03739292c2c2217b64bf55a59e723368463b
|
|
7
|
+
data.tar.gz: 8db721c836e67a7782b20871afdf2f911c5e123448787983b0eb8d86c8c471440d685e60bf1738eb13b393050c912a60897cef0b8d4dfce0ac5cb0e77a2bfb4a
|
|
@@ -179,13 +179,17 @@ module Apidae
|
|
|
179
179
|
case c[:type][:id]
|
|
180
180
|
when PHONE, ALT_PHONE
|
|
181
181
|
contact_details[:telephone] ||= {}
|
|
182
|
-
contact_details[:telephone][c[:identifiant]] = {
|
|
182
|
+
contact_details[:telephone][c[:identifiant]] = {
|
|
183
|
+
value: c.dig(:coordonnees, :fr),
|
|
184
|
+
description: c.dig(:observation, :libelleFr),
|
|
185
|
+
locales: Hash[(c[:coordonnees] || {}).except(:fr).keys.map {|l| [l, {value: c.dig(:coordonnees, l), description: c.dig(:observation, localized_key(l))}]}]
|
|
186
|
+
}
|
|
183
187
|
else
|
|
184
188
|
contacts_refs_by_code = CONTACTS_MAP.invert
|
|
185
189
|
if contacts_refs_by_code.keys.include?(c[:type][:id])
|
|
186
190
|
contact_ref = contacts_refs_by_code[c[:type][:id]].to_sym
|
|
187
191
|
contact_details[contact_ref] ||= {}
|
|
188
|
-
contact_details[contact_ref][c[:identifiant]] = {value: c
|
|
192
|
+
contact_details[contact_ref][c[:identifiant]] = {value: c.dig(:coordonnees, :fr), description: c.dig(:observation, :libelleFr)}
|
|
189
193
|
end
|
|
190
194
|
end
|
|
191
195
|
end
|
|
@@ -355,7 +359,8 @@ module Apidae
|
|
|
355
359
|
end
|
|
356
360
|
|
|
357
361
|
if information_hash[:informationsLegales]
|
|
358
|
-
entity_hash
|
|
362
|
+
entity_hash[:legal] = (entity_hash[:legal] || {}).symbolize_keys
|
|
363
|
+
entity_hash[:legal].merge!(information_hash[:informationsLegales])
|
|
359
364
|
end
|
|
360
365
|
end
|
|
361
366
|
if sp_hash && sp_hash[:prestataireActivites]
|
data/lib/apidae/version.rb
CHANGED
|
@@ -14264,6 +14264,942 @@ callback this way:
|
|
|
14264
14264
|
That block runs when the application boots, and every time there is a reload.
|
|
14265
14265
|
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14266
14266
|
|
|
14267
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14268
|
+
Rails autoloads and reloads.
|
|
14269
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14270
|
+
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.
|
|
14271
|
+
|
|
14272
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14273
|
+
to be an error condition in future versions of Rails.
|
|
14274
|
+
|
|
14275
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14276
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14277
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14278
|
+
|
|
14279
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14280
|
+
|
|
14281
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14282
|
+
callback this way:
|
|
14283
|
+
|
|
14284
|
+
Rails.application.reloader.to_prepare do
|
|
14285
|
+
# Autoload classes and modules needed at boot time here.
|
|
14286
|
+
end
|
|
14287
|
+
|
|
14288
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14289
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14290
|
+
|
|
14291
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14292
|
+
Rails autoloads and reloads.
|
|
14293
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14294
|
+
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.
|
|
14295
|
+
|
|
14296
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14297
|
+
to be an error condition in future versions of Rails.
|
|
14298
|
+
|
|
14299
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14300
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14301
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14302
|
+
|
|
14303
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14304
|
+
|
|
14305
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14306
|
+
callback this way:
|
|
14307
|
+
|
|
14308
|
+
Rails.application.reloader.to_prepare do
|
|
14309
|
+
# Autoload classes and modules needed at boot time here.
|
|
14310
|
+
end
|
|
14311
|
+
|
|
14312
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14313
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14314
|
+
|
|
14315
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14316
|
+
Rails autoloads and reloads.
|
|
14317
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14318
|
+
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.
|
|
14319
|
+
|
|
14320
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14321
|
+
to be an error condition in future versions of Rails.
|
|
14322
|
+
|
|
14323
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14324
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14325
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14326
|
+
|
|
14327
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14328
|
+
|
|
14329
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14330
|
+
callback this way:
|
|
14331
|
+
|
|
14332
|
+
Rails.application.reloader.to_prepare do
|
|
14333
|
+
# Autoload classes and modules needed at boot time here.
|
|
14334
|
+
end
|
|
14335
|
+
|
|
14336
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14337
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14338
|
+
|
|
14339
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14340
|
+
Rails autoloads and reloads.
|
|
14341
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14342
|
+
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.
|
|
14343
|
+
|
|
14344
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14345
|
+
to be an error condition in future versions of Rails.
|
|
14346
|
+
|
|
14347
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14348
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14349
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14350
|
+
|
|
14351
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14352
|
+
|
|
14353
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14354
|
+
callback this way:
|
|
14355
|
+
|
|
14356
|
+
Rails.application.reloader.to_prepare do
|
|
14357
|
+
# Autoload classes and modules needed at boot time here.
|
|
14358
|
+
end
|
|
14359
|
+
|
|
14360
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14361
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14362
|
+
|
|
14363
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14364
|
+
Rails autoloads and reloads.
|
|
14365
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14366
|
+
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.
|
|
14367
|
+
|
|
14368
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14369
|
+
to be an error condition in future versions of Rails.
|
|
14370
|
+
|
|
14371
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14372
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14373
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14374
|
+
|
|
14375
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14376
|
+
|
|
14377
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14378
|
+
callback this way:
|
|
14379
|
+
|
|
14380
|
+
Rails.application.reloader.to_prepare do
|
|
14381
|
+
# Autoload classes and modules needed at boot time here.
|
|
14382
|
+
end
|
|
14383
|
+
|
|
14384
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14385
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14386
|
+
|
|
14387
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14388
|
+
Rails autoloads and reloads.
|
|
14389
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14390
|
+
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.
|
|
14391
|
+
|
|
14392
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14393
|
+
to be an error condition in future versions of Rails.
|
|
14394
|
+
|
|
14395
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14396
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14397
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14398
|
+
|
|
14399
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14400
|
+
|
|
14401
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14402
|
+
callback this way:
|
|
14403
|
+
|
|
14404
|
+
Rails.application.reloader.to_prepare do
|
|
14405
|
+
# Autoload classes and modules needed at boot time here.
|
|
14406
|
+
end
|
|
14407
|
+
|
|
14408
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14409
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14410
|
+
|
|
14411
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14412
|
+
Rails autoloads and reloads.
|
|
14413
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14414
|
+
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.
|
|
14415
|
+
|
|
14416
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14417
|
+
to be an error condition in future versions of Rails.
|
|
14418
|
+
|
|
14419
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14420
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14421
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14422
|
+
|
|
14423
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14424
|
+
|
|
14425
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14426
|
+
callback this way:
|
|
14427
|
+
|
|
14428
|
+
Rails.application.reloader.to_prepare do
|
|
14429
|
+
# Autoload classes and modules needed at boot time here.
|
|
14430
|
+
end
|
|
14431
|
+
|
|
14432
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14433
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14434
|
+
|
|
14435
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14436
|
+
Rails autoloads and reloads.
|
|
14437
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14438
|
+
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.
|
|
14439
|
+
|
|
14440
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14441
|
+
to be an error condition in future versions of Rails.
|
|
14442
|
+
|
|
14443
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14444
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14445
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14446
|
+
|
|
14447
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14448
|
+
|
|
14449
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14450
|
+
callback this way:
|
|
14451
|
+
|
|
14452
|
+
Rails.application.reloader.to_prepare do
|
|
14453
|
+
# Autoload classes and modules needed at boot time here.
|
|
14454
|
+
end
|
|
14455
|
+
|
|
14456
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14457
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14458
|
+
|
|
14459
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14460
|
+
Rails autoloads and reloads.
|
|
14461
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14462
|
+
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.
|
|
14463
|
+
|
|
14464
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14465
|
+
to be an error condition in future versions of Rails.
|
|
14466
|
+
|
|
14467
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14468
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14469
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14470
|
+
|
|
14471
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14472
|
+
|
|
14473
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14474
|
+
callback this way:
|
|
14475
|
+
|
|
14476
|
+
Rails.application.reloader.to_prepare do
|
|
14477
|
+
# Autoload classes and modules needed at boot time here.
|
|
14478
|
+
end
|
|
14479
|
+
|
|
14480
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14481
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14482
|
+
|
|
14483
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14484
|
+
Rails autoloads and reloads.
|
|
14485
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14486
|
+
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.
|
|
14487
|
+
|
|
14488
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14489
|
+
to be an error condition in future versions of Rails.
|
|
14490
|
+
|
|
14491
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14492
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14493
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14494
|
+
|
|
14495
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14496
|
+
|
|
14497
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14498
|
+
callback this way:
|
|
14499
|
+
|
|
14500
|
+
Rails.application.reloader.to_prepare do
|
|
14501
|
+
# Autoload classes and modules needed at boot time here.
|
|
14502
|
+
end
|
|
14503
|
+
|
|
14504
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14505
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14506
|
+
|
|
14507
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14508
|
+
Rails autoloads and reloads.
|
|
14509
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14510
|
+
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.
|
|
14511
|
+
|
|
14512
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14513
|
+
to be an error condition in future versions of Rails.
|
|
14514
|
+
|
|
14515
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14516
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14517
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14518
|
+
|
|
14519
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14520
|
+
|
|
14521
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14522
|
+
callback this way:
|
|
14523
|
+
|
|
14524
|
+
Rails.application.reloader.to_prepare do
|
|
14525
|
+
# Autoload classes and modules needed at boot time here.
|
|
14526
|
+
end
|
|
14527
|
+
|
|
14528
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14529
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14530
|
+
|
|
14531
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14532
|
+
Rails autoloads and reloads.
|
|
14533
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14534
|
+
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.
|
|
14535
|
+
|
|
14536
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14537
|
+
to be an error condition in future versions of Rails.
|
|
14538
|
+
|
|
14539
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14540
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14541
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14542
|
+
|
|
14543
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14544
|
+
|
|
14545
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14546
|
+
callback this way:
|
|
14547
|
+
|
|
14548
|
+
Rails.application.reloader.to_prepare do
|
|
14549
|
+
# Autoload classes and modules needed at boot time here.
|
|
14550
|
+
end
|
|
14551
|
+
|
|
14552
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14553
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14554
|
+
|
|
14555
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14556
|
+
Rails autoloads and reloads.
|
|
14557
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14558
|
+
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.
|
|
14559
|
+
|
|
14560
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14561
|
+
to be an error condition in future versions of Rails.
|
|
14562
|
+
|
|
14563
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14564
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14565
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14566
|
+
|
|
14567
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14568
|
+
|
|
14569
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14570
|
+
callback this way:
|
|
14571
|
+
|
|
14572
|
+
Rails.application.reloader.to_prepare do
|
|
14573
|
+
# Autoload classes and modules needed at boot time here.
|
|
14574
|
+
end
|
|
14575
|
+
|
|
14576
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14577
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14578
|
+
|
|
14579
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14580
|
+
Rails autoloads and reloads.
|
|
14581
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14582
|
+
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.
|
|
14583
|
+
|
|
14584
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14585
|
+
to be an error condition in future versions of Rails.
|
|
14586
|
+
|
|
14587
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14588
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14589
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14590
|
+
|
|
14591
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14592
|
+
|
|
14593
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14594
|
+
callback this way:
|
|
14595
|
+
|
|
14596
|
+
Rails.application.reloader.to_prepare do
|
|
14597
|
+
# Autoload classes and modules needed at boot time here.
|
|
14598
|
+
end
|
|
14599
|
+
|
|
14600
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14601
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14602
|
+
|
|
14603
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14604
|
+
Rails autoloads and reloads.
|
|
14605
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14606
|
+
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.
|
|
14607
|
+
|
|
14608
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14609
|
+
to be an error condition in future versions of Rails.
|
|
14610
|
+
|
|
14611
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14612
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14613
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14614
|
+
|
|
14615
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14616
|
+
|
|
14617
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14618
|
+
callback this way:
|
|
14619
|
+
|
|
14620
|
+
Rails.application.reloader.to_prepare do
|
|
14621
|
+
# Autoload classes and modules needed at boot time here.
|
|
14622
|
+
end
|
|
14623
|
+
|
|
14624
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14625
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14626
|
+
|
|
14627
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14628
|
+
Rails autoloads and reloads.
|
|
14629
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14630
|
+
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.
|
|
14631
|
+
|
|
14632
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14633
|
+
to be an error condition in future versions of Rails.
|
|
14634
|
+
|
|
14635
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14636
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14637
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14638
|
+
|
|
14639
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14640
|
+
|
|
14641
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14642
|
+
callback this way:
|
|
14643
|
+
|
|
14644
|
+
Rails.application.reloader.to_prepare do
|
|
14645
|
+
# Autoload classes and modules needed at boot time here.
|
|
14646
|
+
end
|
|
14647
|
+
|
|
14648
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14649
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14650
|
+
|
|
14651
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14652
|
+
Rails autoloads and reloads.
|
|
14653
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14654
|
+
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.
|
|
14655
|
+
|
|
14656
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14657
|
+
to be an error condition in future versions of Rails.
|
|
14658
|
+
|
|
14659
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14660
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14661
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14662
|
+
|
|
14663
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14664
|
+
|
|
14665
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14666
|
+
callback this way:
|
|
14667
|
+
|
|
14668
|
+
Rails.application.reloader.to_prepare do
|
|
14669
|
+
# Autoload classes and modules needed at boot time here.
|
|
14670
|
+
end
|
|
14671
|
+
|
|
14672
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14673
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14674
|
+
|
|
14675
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14676
|
+
Rails autoloads and reloads.
|
|
14677
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14678
|
+
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.
|
|
14679
|
+
|
|
14680
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14681
|
+
to be an error condition in future versions of Rails.
|
|
14682
|
+
|
|
14683
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14684
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14685
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14686
|
+
|
|
14687
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14688
|
+
|
|
14689
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14690
|
+
callback this way:
|
|
14691
|
+
|
|
14692
|
+
Rails.application.reloader.to_prepare do
|
|
14693
|
+
# Autoload classes and modules needed at boot time here.
|
|
14694
|
+
end
|
|
14695
|
+
|
|
14696
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14697
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14698
|
+
|
|
14699
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14700
|
+
Rails autoloads and reloads.
|
|
14701
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14702
|
+
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.
|
|
14703
|
+
|
|
14704
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14705
|
+
to be an error condition in future versions of Rails.
|
|
14706
|
+
|
|
14707
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14708
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14709
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14710
|
+
|
|
14711
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14712
|
+
|
|
14713
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14714
|
+
callback this way:
|
|
14715
|
+
|
|
14716
|
+
Rails.application.reloader.to_prepare do
|
|
14717
|
+
# Autoload classes and modules needed at boot time here.
|
|
14718
|
+
end
|
|
14719
|
+
|
|
14720
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14721
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14722
|
+
|
|
14723
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14724
|
+
Rails autoloads and reloads.
|
|
14725
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14726
|
+
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.
|
|
14727
|
+
|
|
14728
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14729
|
+
to be an error condition in future versions of Rails.
|
|
14730
|
+
|
|
14731
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14732
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14733
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14734
|
+
|
|
14735
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14736
|
+
|
|
14737
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14738
|
+
callback this way:
|
|
14739
|
+
|
|
14740
|
+
Rails.application.reloader.to_prepare do
|
|
14741
|
+
# Autoload classes and modules needed at boot time here.
|
|
14742
|
+
end
|
|
14743
|
+
|
|
14744
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14745
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14746
|
+
|
|
14747
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14748
|
+
Rails autoloads and reloads.
|
|
14749
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14750
|
+
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.
|
|
14751
|
+
|
|
14752
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14753
|
+
to be an error condition in future versions of Rails.
|
|
14754
|
+
|
|
14755
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14756
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14757
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14758
|
+
|
|
14759
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14760
|
+
|
|
14761
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14762
|
+
callback this way:
|
|
14763
|
+
|
|
14764
|
+
Rails.application.reloader.to_prepare do
|
|
14765
|
+
# Autoload classes and modules needed at boot time here.
|
|
14766
|
+
end
|
|
14767
|
+
|
|
14768
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14769
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14770
|
+
|
|
14771
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14772
|
+
Rails autoloads and reloads.
|
|
14773
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14774
|
+
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.
|
|
14775
|
+
|
|
14776
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14777
|
+
to be an error condition in future versions of Rails.
|
|
14778
|
+
|
|
14779
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14780
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14781
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14782
|
+
|
|
14783
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14784
|
+
|
|
14785
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14786
|
+
callback this way:
|
|
14787
|
+
|
|
14788
|
+
Rails.application.reloader.to_prepare do
|
|
14789
|
+
# Autoload classes and modules needed at boot time here.
|
|
14790
|
+
end
|
|
14791
|
+
|
|
14792
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14793
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14794
|
+
|
|
14795
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14796
|
+
Rails autoloads and reloads.
|
|
14797
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14798
|
+
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.
|
|
14799
|
+
|
|
14800
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14801
|
+
to be an error condition in future versions of Rails.
|
|
14802
|
+
|
|
14803
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14804
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14805
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14806
|
+
|
|
14807
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14808
|
+
|
|
14809
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14810
|
+
callback this way:
|
|
14811
|
+
|
|
14812
|
+
Rails.application.reloader.to_prepare do
|
|
14813
|
+
# Autoload classes and modules needed at boot time here.
|
|
14814
|
+
end
|
|
14815
|
+
|
|
14816
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14817
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14818
|
+
|
|
14819
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14820
|
+
Rails autoloads and reloads.
|
|
14821
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14822
|
+
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.
|
|
14823
|
+
|
|
14824
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14825
|
+
to be an error condition in future versions of Rails.
|
|
14826
|
+
|
|
14827
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14828
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14829
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14830
|
+
|
|
14831
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14832
|
+
|
|
14833
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14834
|
+
callback this way:
|
|
14835
|
+
|
|
14836
|
+
Rails.application.reloader.to_prepare do
|
|
14837
|
+
# Autoload classes and modules needed at boot time here.
|
|
14838
|
+
end
|
|
14839
|
+
|
|
14840
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14841
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14842
|
+
|
|
14843
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14844
|
+
Rails autoloads and reloads.
|
|
14845
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14846
|
+
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.
|
|
14847
|
+
|
|
14848
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14849
|
+
to be an error condition in future versions of Rails.
|
|
14850
|
+
|
|
14851
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14852
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14853
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14854
|
+
|
|
14855
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14856
|
+
|
|
14857
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14858
|
+
callback this way:
|
|
14859
|
+
|
|
14860
|
+
Rails.application.reloader.to_prepare do
|
|
14861
|
+
# Autoload classes and modules needed at boot time here.
|
|
14862
|
+
end
|
|
14863
|
+
|
|
14864
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14865
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14866
|
+
|
|
14867
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14868
|
+
Rails autoloads and reloads.
|
|
14869
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14870
|
+
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.
|
|
14871
|
+
|
|
14872
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14873
|
+
to be an error condition in future versions of Rails.
|
|
14874
|
+
|
|
14875
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14876
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14877
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14878
|
+
|
|
14879
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14880
|
+
|
|
14881
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14882
|
+
callback this way:
|
|
14883
|
+
|
|
14884
|
+
Rails.application.reloader.to_prepare do
|
|
14885
|
+
# Autoload classes and modules needed at boot time here.
|
|
14886
|
+
end
|
|
14887
|
+
|
|
14888
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14889
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14890
|
+
|
|
14891
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14892
|
+
Rails autoloads and reloads.
|
|
14893
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14894
|
+
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.
|
|
14895
|
+
|
|
14896
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14897
|
+
to be an error condition in future versions of Rails.
|
|
14898
|
+
|
|
14899
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14900
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14901
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14902
|
+
|
|
14903
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14904
|
+
|
|
14905
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14906
|
+
callback this way:
|
|
14907
|
+
|
|
14908
|
+
Rails.application.reloader.to_prepare do
|
|
14909
|
+
# Autoload classes and modules needed at boot time here.
|
|
14910
|
+
end
|
|
14911
|
+
|
|
14912
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14913
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14914
|
+
|
|
14915
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14916
|
+
Rails autoloads and reloads.
|
|
14917
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14918
|
+
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.
|
|
14919
|
+
|
|
14920
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14921
|
+
to be an error condition in future versions of Rails.
|
|
14922
|
+
|
|
14923
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14924
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14925
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14926
|
+
|
|
14927
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14928
|
+
|
|
14929
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14930
|
+
callback this way:
|
|
14931
|
+
|
|
14932
|
+
Rails.application.reloader.to_prepare do
|
|
14933
|
+
# Autoload classes and modules needed at boot time here.
|
|
14934
|
+
end
|
|
14935
|
+
|
|
14936
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14937
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14938
|
+
|
|
14939
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14940
|
+
Rails autoloads and reloads.
|
|
14941
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14942
|
+
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.
|
|
14943
|
+
|
|
14944
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14945
|
+
to be an error condition in future versions of Rails.
|
|
14946
|
+
|
|
14947
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14948
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14949
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14950
|
+
|
|
14951
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14952
|
+
|
|
14953
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14954
|
+
callback this way:
|
|
14955
|
+
|
|
14956
|
+
Rails.application.reloader.to_prepare do
|
|
14957
|
+
# Autoload classes and modules needed at boot time here.
|
|
14958
|
+
end
|
|
14959
|
+
|
|
14960
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14961
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14962
|
+
|
|
14963
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14964
|
+
Rails autoloads and reloads.
|
|
14965
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14966
|
+
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.
|
|
14967
|
+
|
|
14968
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14969
|
+
to be an error condition in future versions of Rails.
|
|
14970
|
+
|
|
14971
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14972
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14973
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14974
|
+
|
|
14975
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
14976
|
+
|
|
14977
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
14978
|
+
callback this way:
|
|
14979
|
+
|
|
14980
|
+
Rails.application.reloader.to_prepare do
|
|
14981
|
+
# Autoload classes and modules needed at boot time here.
|
|
14982
|
+
end
|
|
14983
|
+
|
|
14984
|
+
That block runs when the application boots, and every time there is a reload.
|
|
14985
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
14986
|
+
|
|
14987
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14988
|
+
Rails autoloads and reloads.
|
|
14989
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
14990
|
+
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.
|
|
14991
|
+
|
|
14992
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
14993
|
+
to be an error condition in future versions of Rails.
|
|
14994
|
+
|
|
14995
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
14996
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
14997
|
+
the expected changes won't be reflected in that stale Module object.
|
|
14998
|
+
|
|
14999
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15000
|
+
|
|
15001
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15002
|
+
callback this way:
|
|
15003
|
+
|
|
15004
|
+
Rails.application.reloader.to_prepare do
|
|
15005
|
+
# Autoload classes and modules needed at boot time here.
|
|
15006
|
+
end
|
|
15007
|
+
|
|
15008
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15009
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15010
|
+
|
|
15011
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15012
|
+
Rails autoloads and reloads.
|
|
15013
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15014
|
+
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.
|
|
15015
|
+
|
|
15016
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15017
|
+
to be an error condition in future versions of Rails.
|
|
15018
|
+
|
|
15019
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15020
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15021
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15022
|
+
|
|
15023
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15024
|
+
|
|
15025
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15026
|
+
callback this way:
|
|
15027
|
+
|
|
15028
|
+
Rails.application.reloader.to_prepare do
|
|
15029
|
+
# Autoload classes and modules needed at boot time here.
|
|
15030
|
+
end
|
|
15031
|
+
|
|
15032
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15033
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15034
|
+
|
|
15035
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15036
|
+
Rails autoloads and reloads.
|
|
15037
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15038
|
+
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.
|
|
15039
|
+
|
|
15040
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15041
|
+
to be an error condition in future versions of Rails.
|
|
15042
|
+
|
|
15043
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15044
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15045
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15046
|
+
|
|
15047
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15048
|
+
|
|
15049
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15050
|
+
callback this way:
|
|
15051
|
+
|
|
15052
|
+
Rails.application.reloader.to_prepare do
|
|
15053
|
+
# Autoload classes and modules needed at boot time here.
|
|
15054
|
+
end
|
|
15055
|
+
|
|
15056
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15057
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15058
|
+
|
|
15059
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15060
|
+
Rails autoloads and reloads.
|
|
15061
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15062
|
+
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.
|
|
15063
|
+
|
|
15064
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15065
|
+
to be an error condition in future versions of Rails.
|
|
15066
|
+
|
|
15067
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15068
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15069
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15070
|
+
|
|
15071
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15072
|
+
|
|
15073
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15074
|
+
callback this way:
|
|
15075
|
+
|
|
15076
|
+
Rails.application.reloader.to_prepare do
|
|
15077
|
+
# Autoload classes and modules needed at boot time here.
|
|
15078
|
+
end
|
|
15079
|
+
|
|
15080
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15081
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15082
|
+
|
|
15083
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15084
|
+
Rails autoloads and reloads.
|
|
15085
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15086
|
+
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.
|
|
15087
|
+
|
|
15088
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15089
|
+
to be an error condition in future versions of Rails.
|
|
15090
|
+
|
|
15091
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15092
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15093
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15094
|
+
|
|
15095
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15096
|
+
|
|
15097
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15098
|
+
callback this way:
|
|
15099
|
+
|
|
15100
|
+
Rails.application.reloader.to_prepare do
|
|
15101
|
+
# Autoload classes and modules needed at boot time here.
|
|
15102
|
+
end
|
|
15103
|
+
|
|
15104
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15105
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15106
|
+
|
|
15107
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15108
|
+
Rails autoloads and reloads.
|
|
15109
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15110
|
+
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.
|
|
15111
|
+
|
|
15112
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15113
|
+
to be an error condition in future versions of Rails.
|
|
15114
|
+
|
|
15115
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15116
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15117
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15118
|
+
|
|
15119
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15120
|
+
|
|
15121
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15122
|
+
callback this way:
|
|
15123
|
+
|
|
15124
|
+
Rails.application.reloader.to_prepare do
|
|
15125
|
+
# Autoload classes and modules needed at boot time here.
|
|
15126
|
+
end
|
|
15127
|
+
|
|
15128
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15129
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15130
|
+
|
|
15131
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15132
|
+
Rails autoloads and reloads.
|
|
15133
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15134
|
+
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.
|
|
15135
|
+
|
|
15136
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15137
|
+
to be an error condition in future versions of Rails.
|
|
15138
|
+
|
|
15139
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15140
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15141
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15142
|
+
|
|
15143
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15144
|
+
|
|
15145
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15146
|
+
callback this way:
|
|
15147
|
+
|
|
15148
|
+
Rails.application.reloader.to_prepare do
|
|
15149
|
+
# Autoload classes and modules needed at boot time here.
|
|
15150
|
+
end
|
|
15151
|
+
|
|
15152
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15153
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15154
|
+
|
|
15155
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15156
|
+
Rails autoloads and reloads.
|
|
15157
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15158
|
+
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.
|
|
15159
|
+
|
|
15160
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15161
|
+
to be an error condition in future versions of Rails.
|
|
15162
|
+
|
|
15163
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15164
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15165
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15166
|
+
|
|
15167
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15168
|
+
|
|
15169
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15170
|
+
callback this way:
|
|
15171
|
+
|
|
15172
|
+
Rails.application.reloader.to_prepare do
|
|
15173
|
+
# Autoload classes and modules needed at boot time here.
|
|
15174
|
+
end
|
|
15175
|
+
|
|
15176
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15177
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15178
|
+
|
|
15179
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
15180
|
+
Rails autoloads and reloads.
|
|
15181
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
|
15182
|
+
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.
|
|
15183
|
+
|
|
15184
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
|
15185
|
+
to be an error condition in future versions of Rails.
|
|
15186
|
+
|
|
15187
|
+
Reloading does not reboot the application, and therefore code executed during
|
|
15188
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
|
15189
|
+
the expected changes won't be reflected in that stale Module object.
|
|
15190
|
+
|
|
15191
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
|
15192
|
+
|
|
15193
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
|
15194
|
+
callback this way:
|
|
15195
|
+
|
|
15196
|
+
Rails.application.reloader.to_prepare do
|
|
15197
|
+
# Autoload classes and modules needed at boot time here.
|
|
15198
|
+
end
|
|
15199
|
+
|
|
15200
|
+
That block runs when the application boots, and every time there is a reload.
|
|
15201
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
|
15202
|
+
|
|
14267
15203
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
|
14268
15204
|
Rails autoloads and reloads.
|
|
14269
15205
|
(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.25
|
|
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-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|