apidae 1.4.26 → 1.4.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b5f1e7bc931578067144a5f16694fbc79e2f51c467656b2b1dcaf9fcc34b632
4
- data.tar.gz: 70357a305970c3bc87e9a235ba1343cccb9d7f05fdcef6c87dd41087fb451e08
3
+ metadata.gz: 02a75c98465e95a1f4c085ba3c9bb4f470492d21f36144e0bc7ce3f4443abd43
4
+ data.tar.gz: 6aa2d6e64128804f1ea79dcf5e08d31c14a37134683c803fa21d78c01802db60
5
5
  SHA512:
6
- metadata.gz: 4e33789e716ab48e998bb58b9daba74c9bb2d02a5208635a2ed4270fb7d8c76a89c43c00f23395e21919d38186164edaf1a56af9373f31e45f81d31ed79a71c3
7
- data.tar.gz: 1d19cf480d60561f29554334b6b6ab14778750e6048555cd4b262b533e3c472f4c0bbe91847af12bcc2d8d564e97b16c103a81910a8b6215ceb320bc81c2808a
6
+ metadata.gz: 5f6d21a634071a39bb6f2ec299672086a640e5c01230220c26c11fc0c90623026dfdc01c4a7f91613c4546626d28fa21634cde5319df893fd360df8565bdef83
7
+ data.tar.gz: bc3b53e312a327923b8e02190b0c4fac3ab62b68477d1fc20b2475eba6507bddbc6c05c723928181582281bcdb3a18d4669a756b1cf6eda1992366b04bfa69fb
@@ -70,10 +70,12 @@ module Apidae
70
70
  rescue OpenURI::HTTPError => err
71
71
  logger.error("Failed to refresh obj : #{@obj.apidae_id}")
72
72
  logger.error("Error is : #{err}")
73
+ logger.debug err.backtrace.join("\n")
73
74
  redirect_to referrer, alert: "Une erreur s'est produite lors de la mise à jour de l'objet. Veuillez vérifier que le projet Apidae comporte une clé API valide."
74
75
  rescue Exception => ex
75
76
  logger.error("Failed to refresh obj : #{@obj.apidae_id}")
76
- logger.error("Error is : #{err}")
77
+ logger.error("Error is : #{ex}")
78
+ logger.debug ex.backtrace.join("\n")
77
79
  redirect_to referrer, alert: "Une erreur s'est produite lors de la mise à jour de l'objet."
78
80
  end
79
81
  end
@@ -406,13 +406,7 @@ module Apidae
406
406
  each_year: o[:tousLesAns],
407
407
  closing_days: closing_days.blank? ? [] : closing_days.map {|d| d[:dateSpeciale]},
408
408
  details: node_value(o, :complementHoraire, *locales),
409
- time_periods: [
410
- {
411
- type: 'opening',
412
- weekdays: compute_weekdays(o),
413
- time_frames: (o[:horaireOuverture].blank? && o[:horaireFermeture].blank?) ? [] : [{start_time: o[:horaireOuverture], end_time: o[:horaireFermeture], recurrence: nil}]
414
- }
415
- ]
409
+ time_periods: build_time_periods(o)
416
410
  }
417
411
  end
418
412
  end
@@ -431,6 +425,27 @@ module Apidae
431
425
  end
432
426
  end
433
427
 
428
+ def self.build_time_periods(o)
429
+ if o[:horaires].blank?
430
+ [
431
+ {
432
+ type: 'opening',
433
+ weekdays: compute_weekdays(o),
434
+ time_frames: (o[:horaireOuverture].blank? && o[:horaireFermeture].blank?) ? [] : [{start_time: o[:horaireOuverture], end_time: o[:horaireFermeture], recurrence: nil}]
435
+ }
436
+ ]
437
+ else
438
+ o[:horaires].map do |h|
439
+ {
440
+ type: h.dig(:type, :externalType),
441
+ weekdays: compute_weekdays(o),
442
+ time_frames: (h[:timePeriods] || []).map {|tp| (tp[:timeFrames] || [])}.flatten.select {|tf| !tf[:startTime].blank? || !tf[:endTime].blank?}
443
+ .map {|tf| {start_time: tf[:startTime], end_time: tf[:endTime]}}
444
+ }
445
+ end
446
+ end
447
+ end
448
+
434
449
  def self.node_value(node, key, *locales)
435
450
  l = locales.blank? ? [DEFAULT_LOCALE] : locales
436
451
  locales_map = Hash[l.map {|loc| [localized_key(loc), loc]}]
@@ -11,7 +11,7 @@ module Apidae
11
11
  attr_accessor :skip_archiving
12
12
 
13
13
  store_accessor :title_data, :title
14
- store_accessor :owner_data, :owner_name, :owner_id, :polls
14
+ store_accessor :owner_data, :owner_name, :owner_id, :state, :polls
15
15
  store_accessor :description_data, :short_desc, :long_desc, :theme_desc, :private_desc, :accessibility_desc
16
16
  store_accessor :pictures_data, :pictures
17
17
  store_accessor :attachments_data, :attachments
@@ -236,6 +236,7 @@ module Apidae
236
236
  apidae_obj.owner_data = ApidaeDataParser.parse_owner_data(object_data[:gestion][:membreProprietaire], object_data[:enquete]) unless (object_data[:gestion].blank? && object_data[:enquete].blank?)
237
237
  apidae_obj.apidae_type = object_data[:type]
238
238
  apidae_obj.apidae_subtype = ApidaeDataParser.node_id(object_data[type_fields[:node]], type_fields[:subtype])
239
+ apidae_obj.state = object_data[:state]
239
240
  apidae_obj.title_data = ApidaeDataParser.parse_title(object_data, *locales)
240
241
  apidae_obj.description_data = ApidaeDataParser.parse_desc_data(object_data[:presentation], object_data[:donneesPrivees], object_data[:prestations], *locales)
241
242
  apidae_obj.contact_data = ApidaeDataParser.parse_contact_data(object_data[:informations], object_data[:contacts])
@@ -1,3 +1,3 @@
1
1
  module Apidae
2
- VERSION = "1.4.26"
2
+ VERSION = "1.4.28"
3
3
  end
@@ -15200,6 +15200,918 @@ callback this way:
15200
15200
  That block runs when the application boots, and every time there is a reload.
15201
15201
  For historical reasons, it may run twice, so it has to be idempotent.
15202
15202
 
15203
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15204
+ Rails autoloads and reloads.
15205
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15206
+ 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.
15207
+
15208
+ Being able to do this is deprecated. Autoloading during initialization is going
15209
+ to be an error condition in future versions of Rails.
15210
+
15211
+ Reloading does not reboot the application, and therefore code executed during
15212
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15213
+ the expected changes won't be reflected in that stale Module object.
15214
+
15215
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15216
+
15217
+ In order to autoload safely at boot time, please wrap your code in a reloader
15218
+ callback this way:
15219
+
15220
+ Rails.application.reloader.to_prepare do
15221
+ # Autoload classes and modules needed at boot time here.
15222
+ end
15223
+
15224
+ That block runs when the application boots, and every time there is a reload.
15225
+ For historical reasons, it may run twice, so it has to be idempotent.
15226
+
15227
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15228
+ Rails autoloads and reloads.
15229
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15230
+ 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.
15231
+
15232
+ Being able to do this is deprecated. Autoloading during initialization is going
15233
+ to be an error condition in future versions of Rails.
15234
+
15235
+ Reloading does not reboot the application, and therefore code executed during
15236
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15237
+ the expected changes won't be reflected in that stale Module object.
15238
+
15239
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15240
+
15241
+ In order to autoload safely at boot time, please wrap your code in a reloader
15242
+ callback this way:
15243
+
15244
+ Rails.application.reloader.to_prepare do
15245
+ # Autoload classes and modules needed at boot time here.
15246
+ end
15247
+
15248
+ That block runs when the application boots, and every time there is a reload.
15249
+ For historical reasons, it may run twice, so it has to be idempotent.
15250
+
15251
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15252
+ Rails autoloads and reloads.
15253
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15254
+ 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.
15255
+
15256
+ Being able to do this is deprecated. Autoloading during initialization is going
15257
+ to be an error condition in future versions of Rails.
15258
+
15259
+ Reloading does not reboot the application, and therefore code executed during
15260
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15261
+ the expected changes won't be reflected in that stale Module object.
15262
+
15263
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15264
+
15265
+ In order to autoload safely at boot time, please wrap your code in a reloader
15266
+ callback this way:
15267
+
15268
+ Rails.application.reloader.to_prepare do
15269
+ # Autoload classes and modules needed at boot time here.
15270
+ end
15271
+
15272
+ That block runs when the application boots, and every time there is a reload.
15273
+ For historical reasons, it may run twice, so it has to be idempotent.
15274
+
15275
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15276
+ Rails autoloads and reloads.
15277
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15278
+ 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.
15279
+
15280
+ Being able to do this is deprecated. Autoloading during initialization is going
15281
+ to be an error condition in future versions of Rails.
15282
+
15283
+ Reloading does not reboot the application, and therefore code executed during
15284
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15285
+ the expected changes won't be reflected in that stale Module object.
15286
+
15287
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15288
+
15289
+ In order to autoload safely at boot time, please wrap your code in a reloader
15290
+ callback this way:
15291
+
15292
+ Rails.application.reloader.to_prepare do
15293
+ # Autoload classes and modules needed at boot time here.
15294
+ end
15295
+
15296
+ That block runs when the application boots, and every time there is a reload.
15297
+ For historical reasons, it may run twice, so it has to be idempotent.
15298
+
15299
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15300
+ Rails autoloads and reloads.
15301
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15302
+ 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.
15303
+
15304
+ Being able to do this is deprecated. Autoloading during initialization is going
15305
+ to be an error condition in future versions of Rails.
15306
+
15307
+ Reloading does not reboot the application, and therefore code executed during
15308
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15309
+ the expected changes won't be reflected in that stale Module object.
15310
+
15311
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15312
+
15313
+ In order to autoload safely at boot time, please wrap your code in a reloader
15314
+ callback this way:
15315
+
15316
+ Rails.application.reloader.to_prepare do
15317
+ # Autoload classes and modules needed at boot time here.
15318
+ end
15319
+
15320
+ That block runs when the application boots, and every time there is a reload.
15321
+ For historical reasons, it may run twice, so it has to be idempotent.
15322
+
15323
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15324
+ Rails autoloads and reloads.
15325
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15326
+ 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.
15327
+
15328
+ Being able to do this is deprecated. Autoloading during initialization is going
15329
+ to be an error condition in future versions of Rails.
15330
+
15331
+ Reloading does not reboot the application, and therefore code executed during
15332
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15333
+ the expected changes won't be reflected in that stale Module object.
15334
+
15335
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15336
+
15337
+ In order to autoload safely at boot time, please wrap your code in a reloader
15338
+ callback this way:
15339
+
15340
+ Rails.application.reloader.to_prepare do
15341
+ # Autoload classes and modules needed at boot time here.
15342
+ end
15343
+
15344
+ That block runs when the application boots, and every time there is a reload.
15345
+ For historical reasons, it may run twice, so it has to be idempotent.
15346
+
15347
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15348
+ Rails autoloads and reloads.
15349
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15350
+ 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.
15351
+
15352
+ Being able to do this is deprecated. Autoloading during initialization is going
15353
+ to be an error condition in future versions of Rails.
15354
+
15355
+ Reloading does not reboot the application, and therefore code executed during
15356
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15357
+ the expected changes won't be reflected in that stale Module object.
15358
+
15359
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15360
+
15361
+ In order to autoload safely at boot time, please wrap your code in a reloader
15362
+ callback this way:
15363
+
15364
+ Rails.application.reloader.to_prepare do
15365
+ # Autoload classes and modules needed at boot time here.
15366
+ end
15367
+
15368
+ That block runs when the application boots, and every time there is a reload.
15369
+ For historical reasons, it may run twice, so it has to be idempotent.
15370
+
15371
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15372
+ Rails autoloads and reloads.
15373
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15374
+ 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.
15375
+
15376
+ Being able to do this is deprecated. Autoloading during initialization is going
15377
+ to be an error condition in future versions of Rails.
15378
+
15379
+ Reloading does not reboot the application, and therefore code executed during
15380
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15381
+ the expected changes won't be reflected in that stale Module object.
15382
+
15383
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15384
+
15385
+ In order to autoload safely at boot time, please wrap your code in a reloader
15386
+ callback this way:
15387
+
15388
+ Rails.application.reloader.to_prepare do
15389
+ # Autoload classes and modules needed at boot time here.
15390
+ end
15391
+
15392
+ That block runs when the application boots, and every time there is a reload.
15393
+ For historical reasons, it may run twice, so it has to be idempotent.
15394
+
15395
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15396
+ Rails autoloads and reloads.
15397
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15398
+ 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.
15399
+
15400
+ Being able to do this is deprecated. Autoloading during initialization is going
15401
+ to be an error condition in future versions of Rails.
15402
+
15403
+ Reloading does not reboot the application, and therefore code executed during
15404
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15405
+ the expected changes won't be reflected in that stale Module object.
15406
+
15407
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15408
+
15409
+ In order to autoload safely at boot time, please wrap your code in a reloader
15410
+ callback this way:
15411
+
15412
+ Rails.application.reloader.to_prepare do
15413
+ # Autoload classes and modules needed at boot time here.
15414
+ end
15415
+
15416
+ That block runs when the application boots, and every time there is a reload.
15417
+ For historical reasons, it may run twice, so it has to be idempotent.
15418
+
15419
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
15420
+ Rails autoloads and reloads.
15421
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
15422
+ 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.
15423
+
15424
+ Being able to do this is deprecated. Autoloading during initialization is going
15425
+ to be an error condition in future versions of Rails.
15426
+
15427
+ Reloading does not reboot the application, and therefore code executed during
15428
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
15429
+ the expected changes won't be reflected in that stale Module object.
15430
+
15431
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
15432
+
15433
+ In order to autoload safely at boot time, please wrap your code in a reloader
15434
+ callback this way:
15435
+
15436
+ Rails.application.reloader.to_prepare do
15437
+ # Autoload classes and modules needed at boot time here.
15438
+ end
15439
+
15440
+ That block runs when the application boots, and every time there is a reload.
15441
+ For historical reasons, it may run twice, so it has to be idempotent.
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
+
15203
16115
  Check the "Autoloading and Reloading Constants" guide to learn more about how
15204
16116
  Rails autoloads and reloads.
15205
16117
  (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apidae
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.26
4
+ version: 1.4.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Baptiste Vilain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-16 00:00:00.000000000 Z
11
+ date: 2026-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails