apidae 1.4.7 → 1.4.8
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 +1 -1
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +1248 -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: 4974fb56266a4f50e6a83bb3798275f37a86964e45ebc270d3188027c6522181
|
4
|
+
data.tar.gz: 03212fa705c01c41741b2d9c79b953bc629ba4fd2aca8b58924b04414ae5442a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 206398030c976bde39016f6ea123147f60c2029e89c0035d0027a04169c30cb65688fe02b03844e85b7781fa2ae6d9f14b014b798ee6eff9ef7887d25b34fbf6
|
7
|
+
data.tar.gz: aba23cab0363802ec534470d416ad28a2029aeae7f504d20d6aed77cea1f245153f2add267b71fa880fda2dd25d85453d25c7d41170b69f82e4e3ca2676c8bea
|
@@ -241,7 +241,7 @@ module Apidae
|
|
241
241
|
methods = rates_hash[:modesPaiement].blank? ? [] : rates_hash[:modesPaiement].map {|p| p[:id]}
|
242
242
|
{
|
243
243
|
rates_desc: desc, rates: values, rates_category: rates_hash[:indicationTarif], payment_methods: methods,
|
244
|
-
tax_included: rates_hash[:taxeDeSejourIncluse].blank? ? nil : (rates_hash[:taxeDeSejourIncluse] == 'OUI'),
|
244
|
+
tax_included: (rates_hash[:taxeDeSejourIncluse].blank? || rates_hash[:taxeDeSejourIncluse] == 'NON_COMMUNIQUE') ? nil : (rates_hash[:taxeDeSejourIncluse] == 'OUI'),
|
245
245
|
rates_desc_mode: rates_hash[:tarifsEnClairGenerationMode] == 'AUTOMATIQUE' ? MODE_AUTO : MODE_MANUAL,
|
246
246
|
includes: node_value(rates_hash, :leTarifComprend, *locales),
|
247
247
|
excludes: node_value(rates_hash, :leTarifNeComprendPas, *locales),
|
data/lib/apidae/version.rb
CHANGED
@@ -8717,6 +8717,1254 @@ callback this way:
|
|
8717
8717
|
That block runs when the application boots, and every time there is a reload.
|
8718
8718
|
For historical reasons, it may run twice, so it has to be idempotent.
|
8719
8719
|
|
8720
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8721
|
+
Rails autoloads and reloads.
|
8722
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8723
|
+
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.
|
8724
|
+
|
8725
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8726
|
+
to be an error condition in future versions of Rails.
|
8727
|
+
|
8728
|
+
Reloading does not reboot the application, and therefore code executed during
|
8729
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8730
|
+
the expected changes won't be reflected in that stale Module object.
|
8731
|
+
|
8732
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8733
|
+
|
8734
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8735
|
+
callback this way:
|
8736
|
+
|
8737
|
+
Rails.application.reloader.to_prepare do
|
8738
|
+
# Autoload classes and modules needed at boot time here.
|
8739
|
+
end
|
8740
|
+
|
8741
|
+
That block runs when the application boots, and every time there is a reload.
|
8742
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8743
|
+
|
8744
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8745
|
+
Rails autoloads and reloads.
|
8746
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8747
|
+
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.
|
8748
|
+
|
8749
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8750
|
+
to be an error condition in future versions of Rails.
|
8751
|
+
|
8752
|
+
Reloading does not reboot the application, and therefore code executed during
|
8753
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8754
|
+
the expected changes won't be reflected in that stale Module object.
|
8755
|
+
|
8756
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8757
|
+
|
8758
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8759
|
+
callback this way:
|
8760
|
+
|
8761
|
+
Rails.application.reloader.to_prepare do
|
8762
|
+
# Autoload classes and modules needed at boot time here.
|
8763
|
+
end
|
8764
|
+
|
8765
|
+
That block runs when the application boots, and every time there is a reload.
|
8766
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8767
|
+
|
8768
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8769
|
+
Rails autoloads and reloads.
|
8770
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8771
|
+
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.
|
8772
|
+
|
8773
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8774
|
+
to be an error condition in future versions of Rails.
|
8775
|
+
|
8776
|
+
Reloading does not reboot the application, and therefore code executed during
|
8777
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8778
|
+
the expected changes won't be reflected in that stale Module object.
|
8779
|
+
|
8780
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8781
|
+
|
8782
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8783
|
+
callback this way:
|
8784
|
+
|
8785
|
+
Rails.application.reloader.to_prepare do
|
8786
|
+
# Autoload classes and modules needed at boot time here.
|
8787
|
+
end
|
8788
|
+
|
8789
|
+
That block runs when the application boots, and every time there is a reload.
|
8790
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8791
|
+
|
8792
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8793
|
+
Rails autoloads and reloads.
|
8794
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8795
|
+
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.
|
8796
|
+
|
8797
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8798
|
+
to be an error condition in future versions of Rails.
|
8799
|
+
|
8800
|
+
Reloading does not reboot the application, and therefore code executed during
|
8801
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8802
|
+
the expected changes won't be reflected in that stale Module object.
|
8803
|
+
|
8804
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8805
|
+
|
8806
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8807
|
+
callback this way:
|
8808
|
+
|
8809
|
+
Rails.application.reloader.to_prepare do
|
8810
|
+
# Autoload classes and modules needed at boot time here.
|
8811
|
+
end
|
8812
|
+
|
8813
|
+
That block runs when the application boots, and every time there is a reload.
|
8814
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8815
|
+
|
8816
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8817
|
+
Rails autoloads and reloads.
|
8818
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8819
|
+
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.
|
8820
|
+
|
8821
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8822
|
+
to be an error condition in future versions of Rails.
|
8823
|
+
|
8824
|
+
Reloading does not reboot the application, and therefore code executed during
|
8825
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8826
|
+
the expected changes won't be reflected in that stale Module object.
|
8827
|
+
|
8828
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8829
|
+
|
8830
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8831
|
+
callback this way:
|
8832
|
+
|
8833
|
+
Rails.application.reloader.to_prepare do
|
8834
|
+
# Autoload classes and modules needed at boot time here.
|
8835
|
+
end
|
8836
|
+
|
8837
|
+
That block runs when the application boots, and every time there is a reload.
|
8838
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8839
|
+
|
8840
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8841
|
+
Rails autoloads and reloads.
|
8842
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8843
|
+
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.
|
8844
|
+
|
8845
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8846
|
+
to be an error condition in future versions of Rails.
|
8847
|
+
|
8848
|
+
Reloading does not reboot the application, and therefore code executed during
|
8849
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8850
|
+
the expected changes won't be reflected in that stale Module object.
|
8851
|
+
|
8852
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8853
|
+
|
8854
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8855
|
+
callback this way:
|
8856
|
+
|
8857
|
+
Rails.application.reloader.to_prepare do
|
8858
|
+
# Autoload classes and modules needed at boot time here.
|
8859
|
+
end
|
8860
|
+
|
8861
|
+
That block runs when the application boots, and every time there is a reload.
|
8862
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8863
|
+
|
8864
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8865
|
+
Rails autoloads and reloads.
|
8866
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8867
|
+
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.
|
8868
|
+
|
8869
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8870
|
+
to be an error condition in future versions of Rails.
|
8871
|
+
|
8872
|
+
Reloading does not reboot the application, and therefore code executed during
|
8873
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8874
|
+
the expected changes won't be reflected in that stale Module object.
|
8875
|
+
|
8876
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8877
|
+
|
8878
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8879
|
+
callback this way:
|
8880
|
+
|
8881
|
+
Rails.application.reloader.to_prepare do
|
8882
|
+
# Autoload classes and modules needed at boot time here.
|
8883
|
+
end
|
8884
|
+
|
8885
|
+
That block runs when the application boots, and every time there is a reload.
|
8886
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8887
|
+
|
8888
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8889
|
+
Rails autoloads and reloads.
|
8890
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8891
|
+
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.
|
8892
|
+
|
8893
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8894
|
+
to be an error condition in future versions of Rails.
|
8895
|
+
|
8896
|
+
Reloading does not reboot the application, and therefore code executed during
|
8897
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8898
|
+
the expected changes won't be reflected in that stale Module object.
|
8899
|
+
|
8900
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8901
|
+
|
8902
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8903
|
+
callback this way:
|
8904
|
+
|
8905
|
+
Rails.application.reloader.to_prepare do
|
8906
|
+
# Autoload classes and modules needed at boot time here.
|
8907
|
+
end
|
8908
|
+
|
8909
|
+
That block runs when the application boots, and every time there is a reload.
|
8910
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8911
|
+
|
8912
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8913
|
+
Rails autoloads and reloads.
|
8914
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8915
|
+
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.
|
8916
|
+
|
8917
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8918
|
+
to be an error condition in future versions of Rails.
|
8919
|
+
|
8920
|
+
Reloading does not reboot the application, and therefore code executed during
|
8921
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8922
|
+
the expected changes won't be reflected in that stale Module object.
|
8923
|
+
|
8924
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8925
|
+
|
8926
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8927
|
+
callback this way:
|
8928
|
+
|
8929
|
+
Rails.application.reloader.to_prepare do
|
8930
|
+
# Autoload classes and modules needed at boot time here.
|
8931
|
+
end
|
8932
|
+
|
8933
|
+
That block runs when the application boots, and every time there is a reload.
|
8934
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8935
|
+
|
8936
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8937
|
+
Rails autoloads and reloads.
|
8938
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8939
|
+
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.
|
8940
|
+
|
8941
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8942
|
+
to be an error condition in future versions of Rails.
|
8943
|
+
|
8944
|
+
Reloading does not reboot the application, and therefore code executed during
|
8945
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8946
|
+
the expected changes won't be reflected in that stale Module object.
|
8947
|
+
|
8948
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8949
|
+
|
8950
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8951
|
+
callback this way:
|
8952
|
+
|
8953
|
+
Rails.application.reloader.to_prepare do
|
8954
|
+
# Autoload classes and modules needed at boot time here.
|
8955
|
+
end
|
8956
|
+
|
8957
|
+
That block runs when the application boots, and every time there is a reload.
|
8958
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8959
|
+
|
8960
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8961
|
+
Rails autoloads and reloads.
|
8962
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8963
|
+
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.
|
8964
|
+
|
8965
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8966
|
+
to be an error condition in future versions of Rails.
|
8967
|
+
|
8968
|
+
Reloading does not reboot the application, and therefore code executed during
|
8969
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8970
|
+
the expected changes won't be reflected in that stale Module object.
|
8971
|
+
|
8972
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8973
|
+
|
8974
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8975
|
+
callback this way:
|
8976
|
+
|
8977
|
+
Rails.application.reloader.to_prepare do
|
8978
|
+
# Autoload classes and modules needed at boot time here.
|
8979
|
+
end
|
8980
|
+
|
8981
|
+
That block runs when the application boots, and every time there is a reload.
|
8982
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
8983
|
+
|
8984
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8985
|
+
Rails autoloads and reloads.
|
8986
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
8987
|
+
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.
|
8988
|
+
|
8989
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
8990
|
+
to be an error condition in future versions of Rails.
|
8991
|
+
|
8992
|
+
Reloading does not reboot the application, and therefore code executed during
|
8993
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
8994
|
+
the expected changes won't be reflected in that stale Module object.
|
8995
|
+
|
8996
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
8997
|
+
|
8998
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
8999
|
+
callback this way:
|
9000
|
+
|
9001
|
+
Rails.application.reloader.to_prepare do
|
9002
|
+
# Autoload classes and modules needed at boot time here.
|
9003
|
+
end
|
9004
|
+
|
9005
|
+
That block runs when the application boots, and every time there is a reload.
|
9006
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9007
|
+
|
9008
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9009
|
+
Rails autoloads and reloads.
|
9010
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9011
|
+
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.
|
9012
|
+
|
9013
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9014
|
+
to be an error condition in future versions of Rails.
|
9015
|
+
|
9016
|
+
Reloading does not reboot the application, and therefore code executed during
|
9017
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9018
|
+
the expected changes won't be reflected in that stale Module object.
|
9019
|
+
|
9020
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9021
|
+
|
9022
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9023
|
+
callback this way:
|
9024
|
+
|
9025
|
+
Rails.application.reloader.to_prepare do
|
9026
|
+
# Autoload classes and modules needed at boot time here.
|
9027
|
+
end
|
9028
|
+
|
9029
|
+
That block runs when the application boots, and every time there is a reload.
|
9030
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9031
|
+
|
9032
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9033
|
+
Rails autoloads and reloads.
|
9034
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9035
|
+
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.
|
9036
|
+
|
9037
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9038
|
+
to be an error condition in future versions of Rails.
|
9039
|
+
|
9040
|
+
Reloading does not reboot the application, and therefore code executed during
|
9041
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9042
|
+
the expected changes won't be reflected in that stale Module object.
|
9043
|
+
|
9044
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9045
|
+
|
9046
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9047
|
+
callback this way:
|
9048
|
+
|
9049
|
+
Rails.application.reloader.to_prepare do
|
9050
|
+
# Autoload classes and modules needed at boot time here.
|
9051
|
+
end
|
9052
|
+
|
9053
|
+
That block runs when the application boots, and every time there is a reload.
|
9054
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9055
|
+
|
9056
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9057
|
+
Rails autoloads and reloads.
|
9058
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9059
|
+
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.
|
9060
|
+
|
9061
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9062
|
+
to be an error condition in future versions of Rails.
|
9063
|
+
|
9064
|
+
Reloading does not reboot the application, and therefore code executed during
|
9065
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9066
|
+
the expected changes won't be reflected in that stale Module object.
|
9067
|
+
|
9068
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9069
|
+
|
9070
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9071
|
+
callback this way:
|
9072
|
+
|
9073
|
+
Rails.application.reloader.to_prepare do
|
9074
|
+
# Autoload classes and modules needed at boot time here.
|
9075
|
+
end
|
9076
|
+
|
9077
|
+
That block runs when the application boots, and every time there is a reload.
|
9078
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9079
|
+
|
9080
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9081
|
+
Rails autoloads and reloads.
|
9082
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9083
|
+
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.
|
9084
|
+
|
9085
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9086
|
+
to be an error condition in future versions of Rails.
|
9087
|
+
|
9088
|
+
Reloading does not reboot the application, and therefore code executed during
|
9089
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9090
|
+
the expected changes won't be reflected in that stale Module object.
|
9091
|
+
|
9092
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9093
|
+
|
9094
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9095
|
+
callback this way:
|
9096
|
+
|
9097
|
+
Rails.application.reloader.to_prepare do
|
9098
|
+
# Autoload classes and modules needed at boot time here.
|
9099
|
+
end
|
9100
|
+
|
9101
|
+
That block runs when the application boots, and every time there is a reload.
|
9102
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9103
|
+
|
9104
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9105
|
+
Rails autoloads and reloads.
|
9106
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9107
|
+
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.
|
9108
|
+
|
9109
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9110
|
+
to be an error condition in future versions of Rails.
|
9111
|
+
|
9112
|
+
Reloading does not reboot the application, and therefore code executed during
|
9113
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9114
|
+
the expected changes won't be reflected in that stale Module object.
|
9115
|
+
|
9116
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9117
|
+
|
9118
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9119
|
+
callback this way:
|
9120
|
+
|
9121
|
+
Rails.application.reloader.to_prepare do
|
9122
|
+
# Autoload classes and modules needed at boot time here.
|
9123
|
+
end
|
9124
|
+
|
9125
|
+
That block runs when the application boots, and every time there is a reload.
|
9126
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9127
|
+
|
9128
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9129
|
+
Rails autoloads and reloads.
|
9130
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9131
|
+
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.
|
9132
|
+
|
9133
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9134
|
+
to be an error condition in future versions of Rails.
|
9135
|
+
|
9136
|
+
Reloading does not reboot the application, and therefore code executed during
|
9137
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9138
|
+
the expected changes won't be reflected in that stale Module object.
|
9139
|
+
|
9140
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9141
|
+
|
9142
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9143
|
+
callback this way:
|
9144
|
+
|
9145
|
+
Rails.application.reloader.to_prepare do
|
9146
|
+
# Autoload classes and modules needed at boot time here.
|
9147
|
+
end
|
9148
|
+
|
9149
|
+
That block runs when the application boots, and every time there is a reload.
|
9150
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9151
|
+
|
9152
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9153
|
+
Rails autoloads and reloads.
|
9154
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9155
|
+
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.
|
9156
|
+
|
9157
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9158
|
+
to be an error condition in future versions of Rails.
|
9159
|
+
|
9160
|
+
Reloading does not reboot the application, and therefore code executed during
|
9161
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9162
|
+
the expected changes won't be reflected in that stale Module object.
|
9163
|
+
|
9164
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9165
|
+
|
9166
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9167
|
+
callback this way:
|
9168
|
+
|
9169
|
+
Rails.application.reloader.to_prepare do
|
9170
|
+
# Autoload classes and modules needed at boot time here.
|
9171
|
+
end
|
9172
|
+
|
9173
|
+
That block runs when the application boots, and every time there is a reload.
|
9174
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9175
|
+
|
9176
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9177
|
+
Rails autoloads and reloads.
|
9178
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9179
|
+
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.
|
9180
|
+
|
9181
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9182
|
+
to be an error condition in future versions of Rails.
|
9183
|
+
|
9184
|
+
Reloading does not reboot the application, and therefore code executed during
|
9185
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9186
|
+
the expected changes won't be reflected in that stale Module object.
|
9187
|
+
|
9188
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9189
|
+
|
9190
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9191
|
+
callback this way:
|
9192
|
+
|
9193
|
+
Rails.application.reloader.to_prepare do
|
9194
|
+
# Autoload classes and modules needed at boot time here.
|
9195
|
+
end
|
9196
|
+
|
9197
|
+
That block runs when the application boots, and every time there is a reload.
|
9198
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9199
|
+
|
9200
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9201
|
+
Rails autoloads and reloads.
|
9202
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9203
|
+
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.
|
9204
|
+
|
9205
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9206
|
+
to be an error condition in future versions of Rails.
|
9207
|
+
|
9208
|
+
Reloading does not reboot the application, and therefore code executed during
|
9209
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9210
|
+
the expected changes won't be reflected in that stale Module object.
|
9211
|
+
|
9212
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9213
|
+
|
9214
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9215
|
+
callback this way:
|
9216
|
+
|
9217
|
+
Rails.application.reloader.to_prepare do
|
9218
|
+
# Autoload classes and modules needed at boot time here.
|
9219
|
+
end
|
9220
|
+
|
9221
|
+
That block runs when the application boots, and every time there is a reload.
|
9222
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9223
|
+
|
9224
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9225
|
+
Rails autoloads and reloads.
|
9226
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9227
|
+
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.
|
9228
|
+
|
9229
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9230
|
+
to be an error condition in future versions of Rails.
|
9231
|
+
|
9232
|
+
Reloading does not reboot the application, and therefore code executed during
|
9233
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9234
|
+
the expected changes won't be reflected in that stale Module object.
|
9235
|
+
|
9236
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9237
|
+
|
9238
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9239
|
+
callback this way:
|
9240
|
+
|
9241
|
+
Rails.application.reloader.to_prepare do
|
9242
|
+
# Autoload classes and modules needed at boot time here.
|
9243
|
+
end
|
9244
|
+
|
9245
|
+
That block runs when the application boots, and every time there is a reload.
|
9246
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9247
|
+
|
9248
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9249
|
+
Rails autoloads and reloads.
|
9250
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9251
|
+
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.
|
9252
|
+
|
9253
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9254
|
+
to be an error condition in future versions of Rails.
|
9255
|
+
|
9256
|
+
Reloading does not reboot the application, and therefore code executed during
|
9257
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9258
|
+
the expected changes won't be reflected in that stale Module object.
|
9259
|
+
|
9260
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9261
|
+
|
9262
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9263
|
+
callback this way:
|
9264
|
+
|
9265
|
+
Rails.application.reloader.to_prepare do
|
9266
|
+
# Autoload classes and modules needed at boot time here.
|
9267
|
+
end
|
9268
|
+
|
9269
|
+
That block runs when the application boots, and every time there is a reload.
|
9270
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9271
|
+
|
9272
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9273
|
+
Rails autoloads and reloads.
|
9274
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9275
|
+
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.
|
9276
|
+
|
9277
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9278
|
+
to be an error condition in future versions of Rails.
|
9279
|
+
|
9280
|
+
Reloading does not reboot the application, and therefore code executed during
|
9281
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9282
|
+
the expected changes won't be reflected in that stale Module object.
|
9283
|
+
|
9284
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9285
|
+
|
9286
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9287
|
+
callback this way:
|
9288
|
+
|
9289
|
+
Rails.application.reloader.to_prepare do
|
9290
|
+
# Autoload classes and modules needed at boot time here.
|
9291
|
+
end
|
9292
|
+
|
9293
|
+
That block runs when the application boots, and every time there is a reload.
|
9294
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9295
|
+
|
9296
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9297
|
+
Rails autoloads and reloads.
|
9298
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9299
|
+
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.
|
9300
|
+
|
9301
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9302
|
+
to be an error condition in future versions of Rails.
|
9303
|
+
|
9304
|
+
Reloading does not reboot the application, and therefore code executed during
|
9305
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9306
|
+
the expected changes won't be reflected in that stale Module object.
|
9307
|
+
|
9308
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9309
|
+
|
9310
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9311
|
+
callback this way:
|
9312
|
+
|
9313
|
+
Rails.application.reloader.to_prepare do
|
9314
|
+
# Autoload classes and modules needed at boot time here.
|
9315
|
+
end
|
9316
|
+
|
9317
|
+
That block runs when the application boots, and every time there is a reload.
|
9318
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9319
|
+
|
9320
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9321
|
+
Rails autoloads and reloads.
|
9322
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9323
|
+
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.
|
9324
|
+
|
9325
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9326
|
+
to be an error condition in future versions of Rails.
|
9327
|
+
|
9328
|
+
Reloading does not reboot the application, and therefore code executed during
|
9329
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9330
|
+
the expected changes won't be reflected in that stale Module object.
|
9331
|
+
|
9332
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9333
|
+
|
9334
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9335
|
+
callback this way:
|
9336
|
+
|
9337
|
+
Rails.application.reloader.to_prepare do
|
9338
|
+
# Autoload classes and modules needed at boot time here.
|
9339
|
+
end
|
9340
|
+
|
9341
|
+
That block runs when the application boots, and every time there is a reload.
|
9342
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9343
|
+
|
9344
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9345
|
+
Rails autoloads and reloads.
|
9346
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9347
|
+
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.
|
9348
|
+
|
9349
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9350
|
+
to be an error condition in future versions of Rails.
|
9351
|
+
|
9352
|
+
Reloading does not reboot the application, and therefore code executed during
|
9353
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9354
|
+
the expected changes won't be reflected in that stale Module object.
|
9355
|
+
|
9356
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9357
|
+
|
9358
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9359
|
+
callback this way:
|
9360
|
+
|
9361
|
+
Rails.application.reloader.to_prepare do
|
9362
|
+
# Autoload classes and modules needed at boot time here.
|
9363
|
+
end
|
9364
|
+
|
9365
|
+
That block runs when the application boots, and every time there is a reload.
|
9366
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9367
|
+
|
9368
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9369
|
+
Rails autoloads and reloads.
|
9370
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9371
|
+
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.
|
9372
|
+
|
9373
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9374
|
+
to be an error condition in future versions of Rails.
|
9375
|
+
|
9376
|
+
Reloading does not reboot the application, and therefore code executed during
|
9377
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9378
|
+
the expected changes won't be reflected in that stale Module object.
|
9379
|
+
|
9380
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9381
|
+
|
9382
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9383
|
+
callback this way:
|
9384
|
+
|
9385
|
+
Rails.application.reloader.to_prepare do
|
9386
|
+
# Autoload classes and modules needed at boot time here.
|
9387
|
+
end
|
9388
|
+
|
9389
|
+
That block runs when the application boots, and every time there is a reload.
|
9390
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9391
|
+
|
9392
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9393
|
+
Rails autoloads and reloads.
|
9394
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9395
|
+
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.
|
9396
|
+
|
9397
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9398
|
+
to be an error condition in future versions of Rails.
|
9399
|
+
|
9400
|
+
Reloading does not reboot the application, and therefore code executed during
|
9401
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9402
|
+
the expected changes won't be reflected in that stale Module object.
|
9403
|
+
|
9404
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9405
|
+
|
9406
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9407
|
+
callback this way:
|
9408
|
+
|
9409
|
+
Rails.application.reloader.to_prepare do
|
9410
|
+
# Autoload classes and modules needed at boot time here.
|
9411
|
+
end
|
9412
|
+
|
9413
|
+
That block runs when the application boots, and every time there is a reload.
|
9414
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9415
|
+
|
9416
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9417
|
+
Rails autoloads and reloads.
|
9418
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9419
|
+
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.
|
9420
|
+
|
9421
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9422
|
+
to be an error condition in future versions of Rails.
|
9423
|
+
|
9424
|
+
Reloading does not reboot the application, and therefore code executed during
|
9425
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9426
|
+
the expected changes won't be reflected in that stale Module object.
|
9427
|
+
|
9428
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9429
|
+
|
9430
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9431
|
+
callback this way:
|
9432
|
+
|
9433
|
+
Rails.application.reloader.to_prepare do
|
9434
|
+
# Autoload classes and modules needed at boot time here.
|
9435
|
+
end
|
9436
|
+
|
9437
|
+
That block runs when the application boots, and every time there is a reload.
|
9438
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9439
|
+
|
9440
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9441
|
+
Rails autoloads and reloads.
|
9442
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9443
|
+
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.
|
9444
|
+
|
9445
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9446
|
+
to be an error condition in future versions of Rails.
|
9447
|
+
|
9448
|
+
Reloading does not reboot the application, and therefore code executed during
|
9449
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9450
|
+
the expected changes won't be reflected in that stale Module object.
|
9451
|
+
|
9452
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9453
|
+
|
9454
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9455
|
+
callback this way:
|
9456
|
+
|
9457
|
+
Rails.application.reloader.to_prepare do
|
9458
|
+
# Autoload classes and modules needed at boot time here.
|
9459
|
+
end
|
9460
|
+
|
9461
|
+
That block runs when the application boots, and every time there is a reload.
|
9462
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9463
|
+
|
9464
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9465
|
+
Rails autoloads and reloads.
|
9466
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9467
|
+
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.
|
9468
|
+
|
9469
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9470
|
+
to be an error condition in future versions of Rails.
|
9471
|
+
|
9472
|
+
Reloading does not reboot the application, and therefore code executed during
|
9473
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9474
|
+
the expected changes won't be reflected in that stale Module object.
|
9475
|
+
|
9476
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9477
|
+
|
9478
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9479
|
+
callback this way:
|
9480
|
+
|
9481
|
+
Rails.application.reloader.to_prepare do
|
9482
|
+
# Autoload classes and modules needed at boot time here.
|
9483
|
+
end
|
9484
|
+
|
9485
|
+
That block runs when the application boots, and every time there is a reload.
|
9486
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9487
|
+
|
9488
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9489
|
+
Rails autoloads and reloads.
|
9490
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9491
|
+
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.
|
9492
|
+
|
9493
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9494
|
+
to be an error condition in future versions of Rails.
|
9495
|
+
|
9496
|
+
Reloading does not reboot the application, and therefore code executed during
|
9497
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9498
|
+
the expected changes won't be reflected in that stale Module object.
|
9499
|
+
|
9500
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9501
|
+
|
9502
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9503
|
+
callback this way:
|
9504
|
+
|
9505
|
+
Rails.application.reloader.to_prepare do
|
9506
|
+
# Autoload classes and modules needed at boot time here.
|
9507
|
+
end
|
9508
|
+
|
9509
|
+
That block runs when the application boots, and every time there is a reload.
|
9510
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9511
|
+
|
9512
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9513
|
+
Rails autoloads and reloads.
|
9514
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9515
|
+
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.
|
9516
|
+
|
9517
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9518
|
+
to be an error condition in future versions of Rails.
|
9519
|
+
|
9520
|
+
Reloading does not reboot the application, and therefore code executed during
|
9521
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9522
|
+
the expected changes won't be reflected in that stale Module object.
|
9523
|
+
|
9524
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9525
|
+
|
9526
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9527
|
+
callback this way:
|
9528
|
+
|
9529
|
+
Rails.application.reloader.to_prepare do
|
9530
|
+
# Autoload classes and modules needed at boot time here.
|
9531
|
+
end
|
9532
|
+
|
9533
|
+
That block runs when the application boots, and every time there is a reload.
|
9534
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9535
|
+
|
9536
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9537
|
+
Rails autoloads and reloads.
|
9538
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9539
|
+
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.
|
9540
|
+
|
9541
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9542
|
+
to be an error condition in future versions of Rails.
|
9543
|
+
|
9544
|
+
Reloading does not reboot the application, and therefore code executed during
|
9545
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9546
|
+
the expected changes won't be reflected in that stale Module object.
|
9547
|
+
|
9548
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9549
|
+
|
9550
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9551
|
+
callback this way:
|
9552
|
+
|
9553
|
+
Rails.application.reloader.to_prepare do
|
9554
|
+
# Autoload classes and modules needed at boot time here.
|
9555
|
+
end
|
9556
|
+
|
9557
|
+
That block runs when the application boots, and every time there is a reload.
|
9558
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9559
|
+
|
9560
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9561
|
+
Rails autoloads and reloads.
|
9562
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9563
|
+
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.
|
9564
|
+
|
9565
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9566
|
+
to be an error condition in future versions of Rails.
|
9567
|
+
|
9568
|
+
Reloading does not reboot the application, and therefore code executed during
|
9569
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9570
|
+
the expected changes won't be reflected in that stale Module object.
|
9571
|
+
|
9572
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9573
|
+
|
9574
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9575
|
+
callback this way:
|
9576
|
+
|
9577
|
+
Rails.application.reloader.to_prepare do
|
9578
|
+
# Autoload classes and modules needed at boot time here.
|
9579
|
+
end
|
9580
|
+
|
9581
|
+
That block runs when the application boots, and every time there is a reload.
|
9582
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9583
|
+
|
9584
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9585
|
+
Rails autoloads and reloads.
|
9586
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9587
|
+
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.
|
9588
|
+
|
9589
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9590
|
+
to be an error condition in future versions of Rails.
|
9591
|
+
|
9592
|
+
Reloading does not reboot the application, and therefore code executed during
|
9593
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9594
|
+
the expected changes won't be reflected in that stale Module object.
|
9595
|
+
|
9596
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9597
|
+
|
9598
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9599
|
+
callback this way:
|
9600
|
+
|
9601
|
+
Rails.application.reloader.to_prepare do
|
9602
|
+
# Autoload classes and modules needed at boot time here.
|
9603
|
+
end
|
9604
|
+
|
9605
|
+
That block runs when the application boots, and every time there is a reload.
|
9606
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9607
|
+
|
9608
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9609
|
+
Rails autoloads and reloads.
|
9610
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9611
|
+
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.
|
9612
|
+
|
9613
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9614
|
+
to be an error condition in future versions of Rails.
|
9615
|
+
|
9616
|
+
Reloading does not reboot the application, and therefore code executed during
|
9617
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9618
|
+
the expected changes won't be reflected in that stale Module object.
|
9619
|
+
|
9620
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9621
|
+
|
9622
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9623
|
+
callback this way:
|
9624
|
+
|
9625
|
+
Rails.application.reloader.to_prepare do
|
9626
|
+
# Autoload classes and modules needed at boot time here.
|
9627
|
+
end
|
9628
|
+
|
9629
|
+
That block runs when the application boots, and every time there is a reload.
|
9630
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9631
|
+
|
9632
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9633
|
+
Rails autoloads and reloads.
|
9634
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9635
|
+
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.
|
9636
|
+
|
9637
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9638
|
+
to be an error condition in future versions of Rails.
|
9639
|
+
|
9640
|
+
Reloading does not reboot the application, and therefore code executed during
|
9641
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9642
|
+
the expected changes won't be reflected in that stale Module object.
|
9643
|
+
|
9644
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9645
|
+
|
9646
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9647
|
+
callback this way:
|
9648
|
+
|
9649
|
+
Rails.application.reloader.to_prepare do
|
9650
|
+
# Autoload classes and modules needed at boot time here.
|
9651
|
+
end
|
9652
|
+
|
9653
|
+
That block runs when the application boots, and every time there is a reload.
|
9654
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9655
|
+
|
9656
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9657
|
+
Rails autoloads and reloads.
|
9658
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9659
|
+
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.
|
9660
|
+
|
9661
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9662
|
+
to be an error condition in future versions of Rails.
|
9663
|
+
|
9664
|
+
Reloading does not reboot the application, and therefore code executed during
|
9665
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9666
|
+
the expected changes won't be reflected in that stale Module object.
|
9667
|
+
|
9668
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9669
|
+
|
9670
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9671
|
+
callback this way:
|
9672
|
+
|
9673
|
+
Rails.application.reloader.to_prepare do
|
9674
|
+
# Autoload classes and modules needed at boot time here.
|
9675
|
+
end
|
9676
|
+
|
9677
|
+
That block runs when the application boots, and every time there is a reload.
|
9678
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9679
|
+
|
9680
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9681
|
+
Rails autoloads and reloads.
|
9682
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9683
|
+
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.
|
9684
|
+
|
9685
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9686
|
+
to be an error condition in future versions of Rails.
|
9687
|
+
|
9688
|
+
Reloading does not reboot the application, and therefore code executed during
|
9689
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9690
|
+
the expected changes won't be reflected in that stale Module object.
|
9691
|
+
|
9692
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9693
|
+
|
9694
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9695
|
+
callback this way:
|
9696
|
+
|
9697
|
+
Rails.application.reloader.to_prepare do
|
9698
|
+
# Autoload classes and modules needed at boot time here.
|
9699
|
+
end
|
9700
|
+
|
9701
|
+
That block runs when the application boots, and every time there is a reload.
|
9702
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9703
|
+
|
9704
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9705
|
+
Rails autoloads and reloads.
|
9706
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9707
|
+
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.
|
9708
|
+
|
9709
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9710
|
+
to be an error condition in future versions of Rails.
|
9711
|
+
|
9712
|
+
Reloading does not reboot the application, and therefore code executed during
|
9713
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9714
|
+
the expected changes won't be reflected in that stale Module object.
|
9715
|
+
|
9716
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9717
|
+
|
9718
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9719
|
+
callback this way:
|
9720
|
+
|
9721
|
+
Rails.application.reloader.to_prepare do
|
9722
|
+
# Autoload classes and modules needed at boot time here.
|
9723
|
+
end
|
9724
|
+
|
9725
|
+
That block runs when the application boots, and every time there is a reload.
|
9726
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9727
|
+
|
9728
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9729
|
+
Rails autoloads and reloads.
|
9730
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9731
|
+
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.
|
9732
|
+
|
9733
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9734
|
+
to be an error condition in future versions of Rails.
|
9735
|
+
|
9736
|
+
Reloading does not reboot the application, and therefore code executed during
|
9737
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9738
|
+
the expected changes won't be reflected in that stale Module object.
|
9739
|
+
|
9740
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9741
|
+
|
9742
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9743
|
+
callback this way:
|
9744
|
+
|
9745
|
+
Rails.application.reloader.to_prepare do
|
9746
|
+
# Autoload classes and modules needed at boot time here.
|
9747
|
+
end
|
9748
|
+
|
9749
|
+
That block runs when the application boots, and every time there is a reload.
|
9750
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9751
|
+
|
9752
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9753
|
+
Rails autoloads and reloads.
|
9754
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9755
|
+
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.
|
9756
|
+
|
9757
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9758
|
+
to be an error condition in future versions of Rails.
|
9759
|
+
|
9760
|
+
Reloading does not reboot the application, and therefore code executed during
|
9761
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9762
|
+
the expected changes won't be reflected in that stale Module object.
|
9763
|
+
|
9764
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9765
|
+
|
9766
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9767
|
+
callback this way:
|
9768
|
+
|
9769
|
+
Rails.application.reloader.to_prepare do
|
9770
|
+
# Autoload classes and modules needed at boot time here.
|
9771
|
+
end
|
9772
|
+
|
9773
|
+
That block runs when the application boots, and every time there is a reload.
|
9774
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9775
|
+
|
9776
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9777
|
+
Rails autoloads and reloads.
|
9778
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9779
|
+
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.
|
9780
|
+
|
9781
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9782
|
+
to be an error condition in future versions of Rails.
|
9783
|
+
|
9784
|
+
Reloading does not reboot the application, and therefore code executed during
|
9785
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9786
|
+
the expected changes won't be reflected in that stale Module object.
|
9787
|
+
|
9788
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9789
|
+
|
9790
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9791
|
+
callback this way:
|
9792
|
+
|
9793
|
+
Rails.application.reloader.to_prepare do
|
9794
|
+
# Autoload classes and modules needed at boot time here.
|
9795
|
+
end
|
9796
|
+
|
9797
|
+
That block runs when the application boots, and every time there is a reload.
|
9798
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9799
|
+
|
9800
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9801
|
+
Rails autoloads and reloads.
|
9802
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9803
|
+
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.
|
9804
|
+
|
9805
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9806
|
+
to be an error condition in future versions of Rails.
|
9807
|
+
|
9808
|
+
Reloading does not reboot the application, and therefore code executed during
|
9809
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9810
|
+
the expected changes won't be reflected in that stale Module object.
|
9811
|
+
|
9812
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9813
|
+
|
9814
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9815
|
+
callback this way:
|
9816
|
+
|
9817
|
+
Rails.application.reloader.to_prepare do
|
9818
|
+
# Autoload classes and modules needed at boot time here.
|
9819
|
+
end
|
9820
|
+
|
9821
|
+
That block runs when the application boots, and every time there is a reload.
|
9822
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9823
|
+
|
9824
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9825
|
+
Rails autoloads and reloads.
|
9826
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9827
|
+
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.
|
9828
|
+
|
9829
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9830
|
+
to be an error condition in future versions of Rails.
|
9831
|
+
|
9832
|
+
Reloading does not reboot the application, and therefore code executed during
|
9833
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9834
|
+
the expected changes won't be reflected in that stale Module object.
|
9835
|
+
|
9836
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9837
|
+
|
9838
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9839
|
+
callback this way:
|
9840
|
+
|
9841
|
+
Rails.application.reloader.to_prepare do
|
9842
|
+
# Autoload classes and modules needed at boot time here.
|
9843
|
+
end
|
9844
|
+
|
9845
|
+
That block runs when the application boots, and every time there is a reload.
|
9846
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9847
|
+
|
9848
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9849
|
+
Rails autoloads and reloads.
|
9850
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9851
|
+
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.
|
9852
|
+
|
9853
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9854
|
+
to be an error condition in future versions of Rails.
|
9855
|
+
|
9856
|
+
Reloading does not reboot the application, and therefore code executed during
|
9857
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9858
|
+
the expected changes won't be reflected in that stale Module object.
|
9859
|
+
|
9860
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9861
|
+
|
9862
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9863
|
+
callback this way:
|
9864
|
+
|
9865
|
+
Rails.application.reloader.to_prepare do
|
9866
|
+
# Autoload classes and modules needed at boot time here.
|
9867
|
+
end
|
9868
|
+
|
9869
|
+
That block runs when the application boots, and every time there is a reload.
|
9870
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9871
|
+
|
9872
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9873
|
+
Rails autoloads and reloads.
|
9874
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9875
|
+
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.
|
9876
|
+
|
9877
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9878
|
+
to be an error condition in future versions of Rails.
|
9879
|
+
|
9880
|
+
Reloading does not reboot the application, and therefore code executed during
|
9881
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9882
|
+
the expected changes won't be reflected in that stale Module object.
|
9883
|
+
|
9884
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9885
|
+
|
9886
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9887
|
+
callback this way:
|
9888
|
+
|
9889
|
+
Rails.application.reloader.to_prepare do
|
9890
|
+
# Autoload classes and modules needed at boot time here.
|
9891
|
+
end
|
9892
|
+
|
9893
|
+
That block runs when the application boots, and every time there is a reload.
|
9894
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9895
|
+
|
9896
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9897
|
+
Rails autoloads and reloads.
|
9898
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9899
|
+
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.
|
9900
|
+
|
9901
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9902
|
+
to be an error condition in future versions of Rails.
|
9903
|
+
|
9904
|
+
Reloading does not reboot the application, and therefore code executed during
|
9905
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9906
|
+
the expected changes won't be reflected in that stale Module object.
|
9907
|
+
|
9908
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9909
|
+
|
9910
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9911
|
+
callback this way:
|
9912
|
+
|
9913
|
+
Rails.application.reloader.to_prepare do
|
9914
|
+
# Autoload classes and modules needed at boot time here.
|
9915
|
+
end
|
9916
|
+
|
9917
|
+
That block runs when the application boots, and every time there is a reload.
|
9918
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9919
|
+
|
9920
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9921
|
+
Rails autoloads and reloads.
|
9922
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9923
|
+
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.
|
9924
|
+
|
9925
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9926
|
+
to be an error condition in future versions of Rails.
|
9927
|
+
|
9928
|
+
Reloading does not reboot the application, and therefore code executed during
|
9929
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9930
|
+
the expected changes won't be reflected in that stale Module object.
|
9931
|
+
|
9932
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9933
|
+
|
9934
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9935
|
+
callback this way:
|
9936
|
+
|
9937
|
+
Rails.application.reloader.to_prepare do
|
9938
|
+
# Autoload classes and modules needed at boot time here.
|
9939
|
+
end
|
9940
|
+
|
9941
|
+
That block runs when the application boots, and every time there is a reload.
|
9942
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9943
|
+
|
9944
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9945
|
+
Rails autoloads and reloads.
|
9946
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9947
|
+
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.
|
9948
|
+
|
9949
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9950
|
+
to be an error condition in future versions of Rails.
|
9951
|
+
|
9952
|
+
Reloading does not reboot the application, and therefore code executed during
|
9953
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9954
|
+
the expected changes won't be reflected in that stale Module object.
|
9955
|
+
|
9956
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9957
|
+
|
9958
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9959
|
+
callback this way:
|
9960
|
+
|
9961
|
+
Rails.application.reloader.to_prepare do
|
9962
|
+
# Autoload classes and modules needed at boot time here.
|
9963
|
+
end
|
9964
|
+
|
9965
|
+
That block runs when the application boots, and every time there is a reload.
|
9966
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9967
|
+
|
8720
9968
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
8721
9969
|
Rails autoloads and reloads.
|
8722
9970
|
(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.8
|
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: 2024-
|
11
|
+
date: 2024-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|