apidae 1.4.8 → 1.4.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/apidae/reference.rb +1 -1
- data/config/initializers/constants.rb +3 -2
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +744 -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: 2bbdf35cd06b96fee3b3e64970262c2f424d204c6471fb3bd26e16704d9a033c
|
4
|
+
data.tar.gz: caa1504d94682ee3ed80777d24955084fec7a045e41870e2759c9dfbcaa511a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08456092efcc2417bef00d40d0e5898cf088617f4dc04500180a713d71ec4b052f0b0292adb3407e63c94ed5e5647ce141380389760bf544ed8e63b4475b1bc3'
|
7
|
+
data.tar.gz: a42b55b7a83b89c6859d436f7b45d5b4098ad5234fc559969e1a967aec94145e6de3ecd551a88da0aefed999843a1a58ee4c2c0fecf334b25bbc540975d6d090
|
@@ -16,7 +16,7 @@ module Apidae
|
|
16
16
|
refs_hashes = JSON.parse(refs_json, symbolize_names: true)
|
17
17
|
if refs_hashes.length != where("apidae_type != ?", INTERNAL).count
|
18
18
|
refs_hashes.each do |ref_data|
|
19
|
-
ref = Reference.find_or_initialize_by(apidae_id: ref_data[:id], apidae_type: ref_data[:elementReferenceType])
|
19
|
+
ref = Reference.unscoped.find_or_initialize_by(apidae_id: ref_data[:id], apidae_type: ref_data[:elementReferenceType])
|
20
20
|
ref.label_data = ref_data.slice(*locales_map.keys).transform_keys {|k| locales_map[k]}
|
21
21
|
ref.parent = ref_data[:parent][:id] if ref_data[:parent]
|
22
22
|
ref.category = ref_data[:familleCritere] ? ref_data[:familleCritere][:id] : (ref_data[:typeLabel] ? ref_data[:typeLabel][:id] : nil)
|
@@ -25,9 +25,10 @@ module Apidae
|
|
25
25
|
ALL_VERSIONS = [STANDARD_VERSION, WINTER_VERSION, SUMMER_VERSION, CHALLENGED_VERSION, BUSINESS_VERSION,
|
26
26
|
GROUPS_VERSION, ACTIVITIES_VERSION]
|
27
27
|
|
28
|
-
LOCALIZED_FIELDS = [:title, :short_desc, :long_desc, :pictures, :attachments,
|
28
|
+
LOCALIZED_FIELDS = [:title, :short_desc, :long_desc, :pictures, :attachments, :accessibility_desc,
|
29
29
|
:openings_desc, :rates_desc, :includes, :excludes, :extra, :booking_desc]
|
30
|
-
|
30
|
+
# Todo : finish implem of localized accessibility fields
|
31
|
+
ALL_FIELDS = LOCALIZED_FIELDS + [:theme_desc, :private_desc, :capacity, :telephone, :email, :website,
|
31
32
|
:google, :facebook, :twitter, :yelp, :trip_advisor, :fax, :mobile_website, :shorty_url, :instagram,
|
32
33
|
:openings, :openings_extra, :rates, :services, :payment_methods, :categories, :themes,
|
33
34
|
:labels, :chains, :classification, :challenged, :environments, :languages, :products,
|
data/lib/apidae/version.rb
CHANGED
@@ -9965,6 +9965,750 @@ callback this way:
|
|
9965
9965
|
That block runs when the application boots, and every time there is a reload.
|
9966
9966
|
For historical reasons, it may run twice, so it has to be idempotent.
|
9967
9967
|
|
9968
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9969
|
+
Rails autoloads and reloads.
|
9970
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9971
|
+
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.
|
9972
|
+
|
9973
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9974
|
+
to be an error condition in future versions of Rails.
|
9975
|
+
|
9976
|
+
Reloading does not reboot the application, and therefore code executed during
|
9977
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
9978
|
+
the expected changes won't be reflected in that stale Module object.
|
9979
|
+
|
9980
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
9981
|
+
|
9982
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
9983
|
+
callback this way:
|
9984
|
+
|
9985
|
+
Rails.application.reloader.to_prepare do
|
9986
|
+
# Autoload classes and modules needed at boot time here.
|
9987
|
+
end
|
9988
|
+
|
9989
|
+
That block runs when the application boots, and every time there is a reload.
|
9990
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
9991
|
+
|
9992
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9993
|
+
Rails autoloads and reloads.
|
9994
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
9995
|
+
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.
|
9996
|
+
|
9997
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
9998
|
+
to be an error condition in future versions of Rails.
|
9999
|
+
|
10000
|
+
Reloading does not reboot the application, and therefore code executed during
|
10001
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10002
|
+
the expected changes won't be reflected in that stale Module object.
|
10003
|
+
|
10004
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10005
|
+
|
10006
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10007
|
+
callback this way:
|
10008
|
+
|
10009
|
+
Rails.application.reloader.to_prepare do
|
10010
|
+
# Autoload classes and modules needed at boot time here.
|
10011
|
+
end
|
10012
|
+
|
10013
|
+
That block runs when the application boots, and every time there is a reload.
|
10014
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10015
|
+
|
10016
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10017
|
+
Rails autoloads and reloads.
|
10018
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10019
|
+
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.
|
10020
|
+
|
10021
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10022
|
+
to be an error condition in future versions of Rails.
|
10023
|
+
|
10024
|
+
Reloading does not reboot the application, and therefore code executed during
|
10025
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10026
|
+
the expected changes won't be reflected in that stale Module object.
|
10027
|
+
|
10028
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10029
|
+
|
10030
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10031
|
+
callback this way:
|
10032
|
+
|
10033
|
+
Rails.application.reloader.to_prepare do
|
10034
|
+
# Autoload classes and modules needed at boot time here.
|
10035
|
+
end
|
10036
|
+
|
10037
|
+
That block runs when the application boots, and every time there is a reload.
|
10038
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10039
|
+
|
10040
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10041
|
+
Rails autoloads and reloads.
|
10042
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10043
|
+
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.
|
10044
|
+
|
10045
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10046
|
+
to be an error condition in future versions of Rails.
|
10047
|
+
|
10048
|
+
Reloading does not reboot the application, and therefore code executed during
|
10049
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10050
|
+
the expected changes won't be reflected in that stale Module object.
|
10051
|
+
|
10052
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10053
|
+
|
10054
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10055
|
+
callback this way:
|
10056
|
+
|
10057
|
+
Rails.application.reloader.to_prepare do
|
10058
|
+
# Autoload classes and modules needed at boot time here.
|
10059
|
+
end
|
10060
|
+
|
10061
|
+
That block runs when the application boots, and every time there is a reload.
|
10062
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10063
|
+
|
10064
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10065
|
+
Rails autoloads and reloads.
|
10066
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10067
|
+
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.
|
10068
|
+
|
10069
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10070
|
+
to be an error condition in future versions of Rails.
|
10071
|
+
|
10072
|
+
Reloading does not reboot the application, and therefore code executed during
|
10073
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10074
|
+
the expected changes won't be reflected in that stale Module object.
|
10075
|
+
|
10076
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10077
|
+
|
10078
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10079
|
+
callback this way:
|
10080
|
+
|
10081
|
+
Rails.application.reloader.to_prepare do
|
10082
|
+
# Autoload classes and modules needed at boot time here.
|
10083
|
+
end
|
10084
|
+
|
10085
|
+
That block runs when the application boots, and every time there is a reload.
|
10086
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10087
|
+
|
10088
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10089
|
+
Rails autoloads and reloads.
|
10090
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10091
|
+
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.
|
10092
|
+
|
10093
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10094
|
+
to be an error condition in future versions of Rails.
|
10095
|
+
|
10096
|
+
Reloading does not reboot the application, and therefore code executed during
|
10097
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10098
|
+
the expected changes won't be reflected in that stale Module object.
|
10099
|
+
|
10100
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10101
|
+
|
10102
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10103
|
+
callback this way:
|
10104
|
+
|
10105
|
+
Rails.application.reloader.to_prepare do
|
10106
|
+
# Autoload classes and modules needed at boot time here.
|
10107
|
+
end
|
10108
|
+
|
10109
|
+
That block runs when the application boots, and every time there is a reload.
|
10110
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10111
|
+
|
10112
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10113
|
+
Rails autoloads and reloads.
|
10114
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10115
|
+
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.
|
10116
|
+
|
10117
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10118
|
+
to be an error condition in future versions of Rails.
|
10119
|
+
|
10120
|
+
Reloading does not reboot the application, and therefore code executed during
|
10121
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10122
|
+
the expected changes won't be reflected in that stale Module object.
|
10123
|
+
|
10124
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10125
|
+
|
10126
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10127
|
+
callback this way:
|
10128
|
+
|
10129
|
+
Rails.application.reloader.to_prepare do
|
10130
|
+
# Autoload classes and modules needed at boot time here.
|
10131
|
+
end
|
10132
|
+
|
10133
|
+
That block runs when the application boots, and every time there is a reload.
|
10134
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10135
|
+
|
10136
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10137
|
+
Rails autoloads and reloads.
|
10138
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10139
|
+
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.
|
10140
|
+
|
10141
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10142
|
+
to be an error condition in future versions of Rails.
|
10143
|
+
|
10144
|
+
Reloading does not reboot the application, and therefore code executed during
|
10145
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10146
|
+
the expected changes won't be reflected in that stale Module object.
|
10147
|
+
|
10148
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10149
|
+
|
10150
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10151
|
+
callback this way:
|
10152
|
+
|
10153
|
+
Rails.application.reloader.to_prepare do
|
10154
|
+
# Autoload classes and modules needed at boot time here.
|
10155
|
+
end
|
10156
|
+
|
10157
|
+
That block runs when the application boots, and every time there is a reload.
|
10158
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10159
|
+
|
10160
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10161
|
+
Rails autoloads and reloads.
|
10162
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10163
|
+
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.
|
10164
|
+
|
10165
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10166
|
+
to be an error condition in future versions of Rails.
|
10167
|
+
|
10168
|
+
Reloading does not reboot the application, and therefore code executed during
|
10169
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10170
|
+
the expected changes won't be reflected in that stale Module object.
|
10171
|
+
|
10172
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10173
|
+
|
10174
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10175
|
+
callback this way:
|
10176
|
+
|
10177
|
+
Rails.application.reloader.to_prepare do
|
10178
|
+
# Autoload classes and modules needed at boot time here.
|
10179
|
+
end
|
10180
|
+
|
10181
|
+
That block runs when the application boots, and every time there is a reload.
|
10182
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10183
|
+
|
10184
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10185
|
+
Rails autoloads and reloads.
|
10186
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10187
|
+
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.
|
10188
|
+
|
10189
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10190
|
+
to be an error condition in future versions of Rails.
|
10191
|
+
|
10192
|
+
Reloading does not reboot the application, and therefore code executed during
|
10193
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10194
|
+
the expected changes won't be reflected in that stale Module object.
|
10195
|
+
|
10196
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10197
|
+
|
10198
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10199
|
+
callback this way:
|
10200
|
+
|
10201
|
+
Rails.application.reloader.to_prepare do
|
10202
|
+
# Autoload classes and modules needed at boot time here.
|
10203
|
+
end
|
10204
|
+
|
10205
|
+
That block runs when the application boots, and every time there is a reload.
|
10206
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10207
|
+
|
10208
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10209
|
+
Rails autoloads and reloads.
|
10210
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10211
|
+
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.
|
10212
|
+
|
10213
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10214
|
+
to be an error condition in future versions of Rails.
|
10215
|
+
|
10216
|
+
Reloading does not reboot the application, and therefore code executed during
|
10217
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10218
|
+
the expected changes won't be reflected in that stale Module object.
|
10219
|
+
|
10220
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10221
|
+
|
10222
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10223
|
+
callback this way:
|
10224
|
+
|
10225
|
+
Rails.application.reloader.to_prepare do
|
10226
|
+
# Autoload classes and modules needed at boot time here.
|
10227
|
+
end
|
10228
|
+
|
10229
|
+
That block runs when the application boots, and every time there is a reload.
|
10230
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10231
|
+
|
10232
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10233
|
+
Rails autoloads and reloads.
|
10234
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10235
|
+
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.
|
10236
|
+
|
10237
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10238
|
+
to be an error condition in future versions of Rails.
|
10239
|
+
|
10240
|
+
Reloading does not reboot the application, and therefore code executed during
|
10241
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10242
|
+
the expected changes won't be reflected in that stale Module object.
|
10243
|
+
|
10244
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10245
|
+
|
10246
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10247
|
+
callback this way:
|
10248
|
+
|
10249
|
+
Rails.application.reloader.to_prepare do
|
10250
|
+
# Autoload classes and modules needed at boot time here.
|
10251
|
+
end
|
10252
|
+
|
10253
|
+
That block runs when the application boots, and every time there is a reload.
|
10254
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10255
|
+
|
10256
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10257
|
+
Rails autoloads and reloads.
|
10258
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10259
|
+
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.
|
10260
|
+
|
10261
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10262
|
+
to be an error condition in future versions of Rails.
|
10263
|
+
|
10264
|
+
Reloading does not reboot the application, and therefore code executed during
|
10265
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10266
|
+
the expected changes won't be reflected in that stale Module object.
|
10267
|
+
|
10268
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10269
|
+
|
10270
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10271
|
+
callback this way:
|
10272
|
+
|
10273
|
+
Rails.application.reloader.to_prepare do
|
10274
|
+
# Autoload classes and modules needed at boot time here.
|
10275
|
+
end
|
10276
|
+
|
10277
|
+
That block runs when the application boots, and every time there is a reload.
|
10278
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10279
|
+
|
10280
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10281
|
+
Rails autoloads and reloads.
|
10282
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10283
|
+
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.
|
10284
|
+
|
10285
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10286
|
+
to be an error condition in future versions of Rails.
|
10287
|
+
|
10288
|
+
Reloading does not reboot the application, and therefore code executed during
|
10289
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10290
|
+
the expected changes won't be reflected in that stale Module object.
|
10291
|
+
|
10292
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10293
|
+
|
10294
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10295
|
+
callback this way:
|
10296
|
+
|
10297
|
+
Rails.application.reloader.to_prepare do
|
10298
|
+
# Autoload classes and modules needed at boot time here.
|
10299
|
+
end
|
10300
|
+
|
10301
|
+
That block runs when the application boots, and every time there is a reload.
|
10302
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10303
|
+
|
10304
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10305
|
+
Rails autoloads and reloads.
|
10306
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10307
|
+
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.
|
10308
|
+
|
10309
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10310
|
+
to be an error condition in future versions of Rails.
|
10311
|
+
|
10312
|
+
Reloading does not reboot the application, and therefore code executed during
|
10313
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10314
|
+
the expected changes won't be reflected in that stale Module object.
|
10315
|
+
|
10316
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10317
|
+
|
10318
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10319
|
+
callback this way:
|
10320
|
+
|
10321
|
+
Rails.application.reloader.to_prepare do
|
10322
|
+
# Autoload classes and modules needed at boot time here.
|
10323
|
+
end
|
10324
|
+
|
10325
|
+
That block runs when the application boots, and every time there is a reload.
|
10326
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10327
|
+
|
10328
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10329
|
+
Rails autoloads and reloads.
|
10330
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10331
|
+
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.
|
10332
|
+
|
10333
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10334
|
+
to be an error condition in future versions of Rails.
|
10335
|
+
|
10336
|
+
Reloading does not reboot the application, and therefore code executed during
|
10337
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10338
|
+
the expected changes won't be reflected in that stale Module object.
|
10339
|
+
|
10340
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10341
|
+
|
10342
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10343
|
+
callback this way:
|
10344
|
+
|
10345
|
+
Rails.application.reloader.to_prepare do
|
10346
|
+
# Autoload classes and modules needed at boot time here.
|
10347
|
+
end
|
10348
|
+
|
10349
|
+
That block runs when the application boots, and every time there is a reload.
|
10350
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10351
|
+
|
10352
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10353
|
+
Rails autoloads and reloads.
|
10354
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10355
|
+
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.
|
10356
|
+
|
10357
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10358
|
+
to be an error condition in future versions of Rails.
|
10359
|
+
|
10360
|
+
Reloading does not reboot the application, and therefore code executed during
|
10361
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10362
|
+
the expected changes won't be reflected in that stale Module object.
|
10363
|
+
|
10364
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10365
|
+
|
10366
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10367
|
+
callback this way:
|
10368
|
+
|
10369
|
+
Rails.application.reloader.to_prepare do
|
10370
|
+
# Autoload classes and modules needed at boot time here.
|
10371
|
+
end
|
10372
|
+
|
10373
|
+
That block runs when the application boots, and every time there is a reload.
|
10374
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10375
|
+
|
10376
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10377
|
+
Rails autoloads and reloads.
|
10378
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10379
|
+
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.
|
10380
|
+
|
10381
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10382
|
+
to be an error condition in future versions of Rails.
|
10383
|
+
|
10384
|
+
Reloading does not reboot the application, and therefore code executed during
|
10385
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10386
|
+
the expected changes won't be reflected in that stale Module object.
|
10387
|
+
|
10388
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10389
|
+
|
10390
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10391
|
+
callback this way:
|
10392
|
+
|
10393
|
+
Rails.application.reloader.to_prepare do
|
10394
|
+
# Autoload classes and modules needed at boot time here.
|
10395
|
+
end
|
10396
|
+
|
10397
|
+
That block runs when the application boots, and every time there is a reload.
|
10398
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10399
|
+
|
10400
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10401
|
+
Rails autoloads and reloads.
|
10402
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10403
|
+
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.
|
10404
|
+
|
10405
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10406
|
+
to be an error condition in future versions of Rails.
|
10407
|
+
|
10408
|
+
Reloading does not reboot the application, and therefore code executed during
|
10409
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10410
|
+
the expected changes won't be reflected in that stale Module object.
|
10411
|
+
|
10412
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10413
|
+
|
10414
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10415
|
+
callback this way:
|
10416
|
+
|
10417
|
+
Rails.application.reloader.to_prepare do
|
10418
|
+
# Autoload classes and modules needed at boot time here.
|
10419
|
+
end
|
10420
|
+
|
10421
|
+
That block runs when the application boots, and every time there is a reload.
|
10422
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10423
|
+
|
10424
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10425
|
+
Rails autoloads and reloads.
|
10426
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10427
|
+
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.
|
10428
|
+
|
10429
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10430
|
+
to be an error condition in future versions of Rails.
|
10431
|
+
|
10432
|
+
Reloading does not reboot the application, and therefore code executed during
|
10433
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10434
|
+
the expected changes won't be reflected in that stale Module object.
|
10435
|
+
|
10436
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10437
|
+
|
10438
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10439
|
+
callback this way:
|
10440
|
+
|
10441
|
+
Rails.application.reloader.to_prepare do
|
10442
|
+
# Autoload classes and modules needed at boot time here.
|
10443
|
+
end
|
10444
|
+
|
10445
|
+
That block runs when the application boots, and every time there is a reload.
|
10446
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10447
|
+
|
10448
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10449
|
+
Rails autoloads and reloads.
|
10450
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10451
|
+
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.
|
10452
|
+
|
10453
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10454
|
+
to be an error condition in future versions of Rails.
|
10455
|
+
|
10456
|
+
Reloading does not reboot the application, and therefore code executed during
|
10457
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10458
|
+
the expected changes won't be reflected in that stale Module object.
|
10459
|
+
|
10460
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10461
|
+
|
10462
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10463
|
+
callback this way:
|
10464
|
+
|
10465
|
+
Rails.application.reloader.to_prepare do
|
10466
|
+
# Autoload classes and modules needed at boot time here.
|
10467
|
+
end
|
10468
|
+
|
10469
|
+
That block runs when the application boots, and every time there is a reload.
|
10470
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10471
|
+
|
10472
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10473
|
+
Rails autoloads and reloads.
|
10474
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10475
|
+
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.
|
10476
|
+
|
10477
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10478
|
+
to be an error condition in future versions of Rails.
|
10479
|
+
|
10480
|
+
Reloading does not reboot the application, and therefore code executed during
|
10481
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10482
|
+
the expected changes won't be reflected in that stale Module object.
|
10483
|
+
|
10484
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10485
|
+
|
10486
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10487
|
+
callback this way:
|
10488
|
+
|
10489
|
+
Rails.application.reloader.to_prepare do
|
10490
|
+
# Autoload classes and modules needed at boot time here.
|
10491
|
+
end
|
10492
|
+
|
10493
|
+
That block runs when the application boots, and every time there is a reload.
|
10494
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10495
|
+
|
10496
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10497
|
+
Rails autoloads and reloads.
|
10498
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10499
|
+
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.
|
10500
|
+
|
10501
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10502
|
+
to be an error condition in future versions of Rails.
|
10503
|
+
|
10504
|
+
Reloading does not reboot the application, and therefore code executed during
|
10505
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10506
|
+
the expected changes won't be reflected in that stale Module object.
|
10507
|
+
|
10508
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10509
|
+
|
10510
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10511
|
+
callback this way:
|
10512
|
+
|
10513
|
+
Rails.application.reloader.to_prepare do
|
10514
|
+
# Autoload classes and modules needed at boot time here.
|
10515
|
+
end
|
10516
|
+
|
10517
|
+
That block runs when the application boots, and every time there is a reload.
|
10518
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10519
|
+
|
10520
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10521
|
+
Rails autoloads and reloads.
|
10522
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10523
|
+
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.
|
10524
|
+
|
10525
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10526
|
+
to be an error condition in future versions of Rails.
|
10527
|
+
|
10528
|
+
Reloading does not reboot the application, and therefore code executed during
|
10529
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10530
|
+
the expected changes won't be reflected in that stale Module object.
|
10531
|
+
|
10532
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10533
|
+
|
10534
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10535
|
+
callback this way:
|
10536
|
+
|
10537
|
+
Rails.application.reloader.to_prepare do
|
10538
|
+
# Autoload classes and modules needed at boot time here.
|
10539
|
+
end
|
10540
|
+
|
10541
|
+
That block runs when the application boots, and every time there is a reload.
|
10542
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10543
|
+
|
10544
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10545
|
+
Rails autoloads and reloads.
|
10546
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10547
|
+
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.
|
10548
|
+
|
10549
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10550
|
+
to be an error condition in future versions of Rails.
|
10551
|
+
|
10552
|
+
Reloading does not reboot the application, and therefore code executed during
|
10553
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10554
|
+
the expected changes won't be reflected in that stale Module object.
|
10555
|
+
|
10556
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10557
|
+
|
10558
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10559
|
+
callback this way:
|
10560
|
+
|
10561
|
+
Rails.application.reloader.to_prepare do
|
10562
|
+
# Autoload classes and modules needed at boot time here.
|
10563
|
+
end
|
10564
|
+
|
10565
|
+
That block runs when the application boots, and every time there is a reload.
|
10566
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10567
|
+
|
10568
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10569
|
+
Rails autoloads and reloads.
|
10570
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10571
|
+
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.
|
10572
|
+
|
10573
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10574
|
+
to be an error condition in future versions of Rails.
|
10575
|
+
|
10576
|
+
Reloading does not reboot the application, and therefore code executed during
|
10577
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10578
|
+
the expected changes won't be reflected in that stale Module object.
|
10579
|
+
|
10580
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10581
|
+
|
10582
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10583
|
+
callback this way:
|
10584
|
+
|
10585
|
+
Rails.application.reloader.to_prepare do
|
10586
|
+
# Autoload classes and modules needed at boot time here.
|
10587
|
+
end
|
10588
|
+
|
10589
|
+
That block runs when the application boots, and every time there is a reload.
|
10590
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10591
|
+
|
10592
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10593
|
+
Rails autoloads and reloads.
|
10594
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10595
|
+
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.
|
10596
|
+
|
10597
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10598
|
+
to be an error condition in future versions of Rails.
|
10599
|
+
|
10600
|
+
Reloading does not reboot the application, and therefore code executed during
|
10601
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10602
|
+
the expected changes won't be reflected in that stale Module object.
|
10603
|
+
|
10604
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10605
|
+
|
10606
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10607
|
+
callback this way:
|
10608
|
+
|
10609
|
+
Rails.application.reloader.to_prepare do
|
10610
|
+
# Autoload classes and modules needed at boot time here.
|
10611
|
+
end
|
10612
|
+
|
10613
|
+
That block runs when the application boots, and every time there is a reload.
|
10614
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10615
|
+
|
10616
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10617
|
+
Rails autoloads and reloads.
|
10618
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10619
|
+
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.
|
10620
|
+
|
10621
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10622
|
+
to be an error condition in future versions of Rails.
|
10623
|
+
|
10624
|
+
Reloading does not reboot the application, and therefore code executed during
|
10625
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10626
|
+
the expected changes won't be reflected in that stale Module object.
|
10627
|
+
|
10628
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10629
|
+
|
10630
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10631
|
+
callback this way:
|
10632
|
+
|
10633
|
+
Rails.application.reloader.to_prepare do
|
10634
|
+
# Autoload classes and modules needed at boot time here.
|
10635
|
+
end
|
10636
|
+
|
10637
|
+
That block runs when the application boots, and every time there is a reload.
|
10638
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10639
|
+
|
10640
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10641
|
+
Rails autoloads and reloads.
|
10642
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10643
|
+
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.
|
10644
|
+
|
10645
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10646
|
+
to be an error condition in future versions of Rails.
|
10647
|
+
|
10648
|
+
Reloading does not reboot the application, and therefore code executed during
|
10649
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10650
|
+
the expected changes won't be reflected in that stale Module object.
|
10651
|
+
|
10652
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10653
|
+
|
10654
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10655
|
+
callback this way:
|
10656
|
+
|
10657
|
+
Rails.application.reloader.to_prepare do
|
10658
|
+
# Autoload classes and modules needed at boot time here.
|
10659
|
+
end
|
10660
|
+
|
10661
|
+
That block runs when the application boots, and every time there is a reload.
|
10662
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10663
|
+
|
10664
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10665
|
+
Rails autoloads and reloads.
|
10666
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10667
|
+
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.
|
10668
|
+
|
10669
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10670
|
+
to be an error condition in future versions of Rails.
|
10671
|
+
|
10672
|
+
Reloading does not reboot the application, and therefore code executed during
|
10673
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10674
|
+
the expected changes won't be reflected in that stale Module object.
|
10675
|
+
|
10676
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10677
|
+
|
10678
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10679
|
+
callback this way:
|
10680
|
+
|
10681
|
+
Rails.application.reloader.to_prepare do
|
10682
|
+
# Autoload classes and modules needed at boot time here.
|
10683
|
+
end
|
10684
|
+
|
10685
|
+
That block runs when the application boots, and every time there is a reload.
|
10686
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10687
|
+
|
10688
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
10689
|
+
Rails autoloads and reloads.
|
10690
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
10691
|
+
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.
|
10692
|
+
|
10693
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
10694
|
+
to be an error condition in future versions of Rails.
|
10695
|
+
|
10696
|
+
Reloading does not reboot the application, and therefore code executed during
|
10697
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
10698
|
+
the expected changes won't be reflected in that stale Module object.
|
10699
|
+
|
10700
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
10701
|
+
|
10702
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
10703
|
+
callback this way:
|
10704
|
+
|
10705
|
+
Rails.application.reloader.to_prepare do
|
10706
|
+
# Autoload classes and modules needed at boot time here.
|
10707
|
+
end
|
10708
|
+
|
10709
|
+
That block runs when the application boots, and every time there is a reload.
|
10710
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
10711
|
+
|
9968
10712
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
9969
10713
|
Rails autoloads and reloads.
|
9970
10714
|
(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.9
|
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-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|