apidae 1.4.13 → 1.4.15
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/controllers/apidae/projects_controller.rb +7 -1
- data/app/models/apidae/selection.rb +3 -0
- data/config/routes.rb +4 -1
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +707 -0
- data/test/dummy/tmp/local_secret.txt +1 -0
- metadata +60 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 829fbcc39fd6110c0bbe6900004d1ed3e0efc2a0a345e1c2e0addd151b045d3f
|
4
|
+
data.tar.gz: e8501491443543d72b6fc710ae0a1bcbe18cdaaa40df2942008d1cbc2b0dd625
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fae148c4eec799645b90c2be7dc211d76211e4a516ab4cbe960d6e436b501462b792670058441533d296c840de9ddf28471fd246913b902e6862c66dfda1844
|
7
|
+
data.tar.gz: 4e237b2628166c531857663f7cc245d8b9bf3998d9702325fde9f9a076bc47159894f9b258b2c2328cfb0678fa20c4464f4921d5f674c341f186a0a76c1418d2
|
@@ -3,7 +3,9 @@ require_dependency "apidae/application_controller"
|
|
3
3
|
module Apidae
|
4
4
|
class ProjectsController < ApplicationController
|
5
5
|
before_action :set_project, only: [:edit, :update, :destroy]
|
6
|
-
skip_before_action :check_user_data!, only: [:create]
|
6
|
+
skip_before_action :check_user_data!, only: [:create, :realtime]
|
7
|
+
skip_before_action :verify_authenticity_token, only: [:realtime]
|
8
|
+
skip_before_action Rails.application.config.apidae_auth, only: [:realtime]
|
7
9
|
|
8
10
|
def index
|
9
11
|
if user_is_admin?
|
@@ -47,6 +49,10 @@ module Apidae
|
|
47
49
|
redirect_to request.referrer, notice: 'Le projet a bien été supprimé.'
|
48
50
|
end
|
49
51
|
|
52
|
+
def realtime
|
53
|
+
Rails.logger.info "realtime webhook : #{params.to_unsafe_h}"
|
54
|
+
end
|
55
|
+
|
50
56
|
private
|
51
57
|
|
52
58
|
def set_project
|
@@ -40,6 +40,9 @@ module Apidae
|
|
40
40
|
|
41
41
|
removed_ids = Obj.where(apidae_id: removed).map {|o| o.id}
|
42
42
|
SelectionObject.where(apidae_selection_id: apidae_sel.id, apidae_object_id: removed_ids).delete_all
|
43
|
+
if added.any? || removed.any? || (apidae_sel.objects.maximum(:updated_at) > apidae_sel.updated_at)
|
44
|
+
apidae_sel.touch
|
45
|
+
end
|
43
46
|
end
|
44
47
|
|
45
48
|
def cleanup
|
data/config/routes.rb
CHANGED
@@ -11,7 +11,10 @@ Apidae::Engine.routes.draw do
|
|
11
11
|
end
|
12
12
|
end
|
13
13
|
resources :references, only: [:index]
|
14
|
-
resources :projects, only: [:index, :new, :create, :edit, :update, :destroy], path: 'projets'
|
14
|
+
resources :projects, only: [:index, :new, :create, :edit, :update, :destroy], path: 'projets' do
|
15
|
+
post 'realtime', on: :collection
|
16
|
+
end
|
17
|
+
|
15
18
|
|
16
19
|
match 'import/callback', via: :post, to: 'import#callback'
|
17
20
|
match 'import/run', via: :post, to: 'import#run'
|
data/lib/apidae/version.rb
CHANGED
@@ -13138,3 +13138,710 @@ For historical reasons, it may run twice, so it has to be idempotent.
|
|
13138
13138
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13139
13139
|
Rails autoloads and reloads.
|
13140
13140
|
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13141
|
+
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.
|
13142
|
+
|
13143
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13144
|
+
to be an error condition in future versions of Rails.
|
13145
|
+
|
13146
|
+
Reloading does not reboot the application, and therefore code executed during
|
13147
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13148
|
+
the expected changes won't be reflected in that stale Module object.
|
13149
|
+
|
13150
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13151
|
+
|
13152
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13153
|
+
callback this way:
|
13154
|
+
|
13155
|
+
Rails.application.reloader.to_prepare do
|
13156
|
+
# Autoload classes and modules needed at boot time here.
|
13157
|
+
end
|
13158
|
+
|
13159
|
+
That block runs when the application boots, and every time there is a reload.
|
13160
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13161
|
+
|
13162
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13163
|
+
Rails autoloads and reloads.
|
13164
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13165
|
+
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.
|
13166
|
+
|
13167
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13168
|
+
to be an error condition in future versions of Rails.
|
13169
|
+
|
13170
|
+
Reloading does not reboot the application, and therefore code executed during
|
13171
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13172
|
+
the expected changes won't be reflected in that stale Module object.
|
13173
|
+
|
13174
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13175
|
+
|
13176
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13177
|
+
callback this way:
|
13178
|
+
|
13179
|
+
Rails.application.reloader.to_prepare do
|
13180
|
+
# Autoload classes and modules needed at boot time here.
|
13181
|
+
end
|
13182
|
+
|
13183
|
+
That block runs when the application boots, and every time there is a reload.
|
13184
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13185
|
+
|
13186
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13187
|
+
Rails autoloads and reloads.
|
13188
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13189
|
+
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.
|
13190
|
+
|
13191
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13192
|
+
to be an error condition in future versions of Rails.
|
13193
|
+
|
13194
|
+
Reloading does not reboot the application, and therefore code executed during
|
13195
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13196
|
+
the expected changes won't be reflected in that stale Module object.
|
13197
|
+
|
13198
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13199
|
+
|
13200
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13201
|
+
callback this way:
|
13202
|
+
|
13203
|
+
Rails.application.reloader.to_prepare do
|
13204
|
+
# Autoload classes and modules needed at boot time here.
|
13205
|
+
end
|
13206
|
+
|
13207
|
+
That block runs when the application boots, and every time there is a reload.
|
13208
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13209
|
+
|
13210
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13211
|
+
Rails autoloads and reloads.
|
13212
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13213
|
+
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.
|
13214
|
+
|
13215
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13216
|
+
to be an error condition in future versions of Rails.
|
13217
|
+
|
13218
|
+
Reloading does not reboot the application, and therefore code executed during
|
13219
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13220
|
+
the expected changes won't be reflected in that stale Module object.
|
13221
|
+
|
13222
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13223
|
+
|
13224
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13225
|
+
callback this way:
|
13226
|
+
|
13227
|
+
Rails.application.reloader.to_prepare do
|
13228
|
+
# Autoload classes and modules needed at boot time here.
|
13229
|
+
end
|
13230
|
+
|
13231
|
+
That block runs when the application boots, and every time there is a reload.
|
13232
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13233
|
+
|
13234
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13235
|
+
Rails autoloads and reloads.
|
13236
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13237
|
+
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.
|
13238
|
+
|
13239
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13240
|
+
to be an error condition in future versions of Rails.
|
13241
|
+
|
13242
|
+
Reloading does not reboot the application, and therefore code executed during
|
13243
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13244
|
+
the expected changes won't be reflected in that stale Module object.
|
13245
|
+
|
13246
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13247
|
+
|
13248
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13249
|
+
callback this way:
|
13250
|
+
|
13251
|
+
Rails.application.reloader.to_prepare do
|
13252
|
+
# Autoload classes and modules needed at boot time here.
|
13253
|
+
end
|
13254
|
+
|
13255
|
+
That block runs when the application boots, and every time there is a reload.
|
13256
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13257
|
+
|
13258
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13259
|
+
Rails autoloads and reloads.
|
13260
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13261
|
+
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.
|
13262
|
+
|
13263
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13264
|
+
to be an error condition in future versions of Rails.
|
13265
|
+
|
13266
|
+
Reloading does not reboot the application, and therefore code executed during
|
13267
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13268
|
+
the expected changes won't be reflected in that stale Module object.
|
13269
|
+
|
13270
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13271
|
+
|
13272
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13273
|
+
callback this way:
|
13274
|
+
|
13275
|
+
Rails.application.reloader.to_prepare do
|
13276
|
+
# Autoload classes and modules needed at boot time here.
|
13277
|
+
end
|
13278
|
+
|
13279
|
+
That block runs when the application boots, and every time there is a reload.
|
13280
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13281
|
+
|
13282
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13283
|
+
Rails autoloads and reloads.
|
13284
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13285
|
+
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.
|
13286
|
+
|
13287
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13288
|
+
to be an error condition in future versions of Rails.
|
13289
|
+
|
13290
|
+
Reloading does not reboot the application, and therefore code executed during
|
13291
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13292
|
+
the expected changes won't be reflected in that stale Module object.
|
13293
|
+
|
13294
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13295
|
+
|
13296
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13297
|
+
callback this way:
|
13298
|
+
|
13299
|
+
Rails.application.reloader.to_prepare do
|
13300
|
+
# Autoload classes and modules needed at boot time here.
|
13301
|
+
end
|
13302
|
+
|
13303
|
+
That block runs when the application boots, and every time there is a reload.
|
13304
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13305
|
+
|
13306
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13307
|
+
Rails autoloads and reloads.
|
13308
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13309
|
+
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.
|
13310
|
+
|
13311
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13312
|
+
to be an error condition in future versions of Rails.
|
13313
|
+
|
13314
|
+
Reloading does not reboot the application, and therefore code executed during
|
13315
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13316
|
+
the expected changes won't be reflected in that stale Module object.
|
13317
|
+
|
13318
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13319
|
+
|
13320
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13321
|
+
callback this way:
|
13322
|
+
|
13323
|
+
Rails.application.reloader.to_prepare do
|
13324
|
+
# Autoload classes and modules needed at boot time here.
|
13325
|
+
end
|
13326
|
+
|
13327
|
+
That block runs when the application boots, and every time there is a reload.
|
13328
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13329
|
+
|
13330
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13331
|
+
Rails autoloads and reloads.
|
13332
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13333
|
+
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.
|
13334
|
+
|
13335
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13336
|
+
to be an error condition in future versions of Rails.
|
13337
|
+
|
13338
|
+
Reloading does not reboot the application, and therefore code executed during
|
13339
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13340
|
+
the expected changes won't be reflected in that stale Module object.
|
13341
|
+
|
13342
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13343
|
+
|
13344
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13345
|
+
callback this way:
|
13346
|
+
|
13347
|
+
Rails.application.reloader.to_prepare do
|
13348
|
+
# Autoload classes and modules needed at boot time here.
|
13349
|
+
end
|
13350
|
+
|
13351
|
+
That block runs when the application boots, and every time there is a reload.
|
13352
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13353
|
+
|
13354
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13355
|
+
Rails autoloads and reloads.
|
13356
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13357
|
+
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.
|
13358
|
+
|
13359
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13360
|
+
to be an error condition in future versions of Rails.
|
13361
|
+
|
13362
|
+
Reloading does not reboot the application, and therefore code executed during
|
13363
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13364
|
+
the expected changes won't be reflected in that stale Module object.
|
13365
|
+
|
13366
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13367
|
+
|
13368
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13369
|
+
callback this way:
|
13370
|
+
|
13371
|
+
Rails.application.reloader.to_prepare do
|
13372
|
+
# Autoload classes and modules needed at boot time here.
|
13373
|
+
end
|
13374
|
+
|
13375
|
+
That block runs when the application boots, and every time there is a reload.
|
13376
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13377
|
+
|
13378
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13379
|
+
Rails autoloads and reloads.
|
13380
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13381
|
+
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.
|
13382
|
+
|
13383
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13384
|
+
to be an error condition in future versions of Rails.
|
13385
|
+
|
13386
|
+
Reloading does not reboot the application, and therefore code executed during
|
13387
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13388
|
+
the expected changes won't be reflected in that stale Module object.
|
13389
|
+
|
13390
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13391
|
+
|
13392
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13393
|
+
callback this way:
|
13394
|
+
|
13395
|
+
Rails.application.reloader.to_prepare do
|
13396
|
+
# Autoload classes and modules needed at boot time here.
|
13397
|
+
end
|
13398
|
+
|
13399
|
+
That block runs when the application boots, and every time there is a reload.
|
13400
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13401
|
+
|
13402
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13403
|
+
Rails autoloads and reloads.
|
13404
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13405
|
+
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.
|
13406
|
+
|
13407
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13408
|
+
to be an error condition in future versions of Rails.
|
13409
|
+
|
13410
|
+
Reloading does not reboot the application, and therefore code executed during
|
13411
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13412
|
+
the expected changes won't be reflected in that stale Module object.
|
13413
|
+
|
13414
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13415
|
+
|
13416
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13417
|
+
callback this way:
|
13418
|
+
|
13419
|
+
Rails.application.reloader.to_prepare do
|
13420
|
+
# Autoload classes and modules needed at boot time here.
|
13421
|
+
end
|
13422
|
+
|
13423
|
+
That block runs when the application boots, and every time there is a reload.
|
13424
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13425
|
+
|
13426
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13427
|
+
Rails autoloads and reloads.
|
13428
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13429
|
+
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.
|
13430
|
+
|
13431
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13432
|
+
to be an error condition in future versions of Rails.
|
13433
|
+
|
13434
|
+
Reloading does not reboot the application, and therefore code executed during
|
13435
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13436
|
+
the expected changes won't be reflected in that stale Module object.
|
13437
|
+
|
13438
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13439
|
+
|
13440
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13441
|
+
callback this way:
|
13442
|
+
|
13443
|
+
Rails.application.reloader.to_prepare do
|
13444
|
+
# Autoload classes and modules needed at boot time here.
|
13445
|
+
end
|
13446
|
+
|
13447
|
+
That block runs when the application boots, and every time there is a reload.
|
13448
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13449
|
+
|
13450
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13451
|
+
Rails autoloads and reloads.
|
13452
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13453
|
+
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.
|
13454
|
+
|
13455
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13456
|
+
to be an error condition in future versions of Rails.
|
13457
|
+
|
13458
|
+
Reloading does not reboot the application, and therefore code executed during
|
13459
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13460
|
+
the expected changes won't be reflected in that stale Module object.
|
13461
|
+
|
13462
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13463
|
+
|
13464
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13465
|
+
callback this way:
|
13466
|
+
|
13467
|
+
Rails.application.reloader.to_prepare do
|
13468
|
+
# Autoload classes and modules needed at boot time here.
|
13469
|
+
end
|
13470
|
+
|
13471
|
+
That block runs when the application boots, and every time there is a reload.
|
13472
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13473
|
+
|
13474
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13475
|
+
Rails autoloads and reloads.
|
13476
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13477
|
+
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.
|
13478
|
+
|
13479
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13480
|
+
to be an error condition in future versions of Rails.
|
13481
|
+
|
13482
|
+
Reloading does not reboot the application, and therefore code executed during
|
13483
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13484
|
+
the expected changes won't be reflected in that stale Module object.
|
13485
|
+
|
13486
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13487
|
+
|
13488
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13489
|
+
callback this way:
|
13490
|
+
|
13491
|
+
Rails.application.reloader.to_prepare do
|
13492
|
+
# Autoload classes and modules needed at boot time here.
|
13493
|
+
end
|
13494
|
+
|
13495
|
+
That block runs when the application boots, and every time there is a reload.
|
13496
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13497
|
+
|
13498
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13499
|
+
Rails autoloads and reloads.
|
13500
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13501
|
+
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.
|
13502
|
+
|
13503
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13504
|
+
to be an error condition in future versions of Rails.
|
13505
|
+
|
13506
|
+
Reloading does not reboot the application, and therefore code executed during
|
13507
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13508
|
+
the expected changes won't be reflected in that stale Module object.
|
13509
|
+
|
13510
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13511
|
+
|
13512
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13513
|
+
callback this way:
|
13514
|
+
|
13515
|
+
Rails.application.reloader.to_prepare do
|
13516
|
+
# Autoload classes and modules needed at boot time here.
|
13517
|
+
end
|
13518
|
+
|
13519
|
+
That block runs when the application boots, and every time there is a reload.
|
13520
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13521
|
+
|
13522
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13523
|
+
Rails autoloads and reloads.
|
13524
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13525
|
+
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.
|
13526
|
+
|
13527
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13528
|
+
to be an error condition in future versions of Rails.
|
13529
|
+
|
13530
|
+
Reloading does not reboot the application, and therefore code executed during
|
13531
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13532
|
+
the expected changes won't be reflected in that stale Module object.
|
13533
|
+
|
13534
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13535
|
+
|
13536
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13537
|
+
callback this way:
|
13538
|
+
|
13539
|
+
Rails.application.reloader.to_prepare do
|
13540
|
+
# Autoload classes and modules needed at boot time here.
|
13541
|
+
end
|
13542
|
+
|
13543
|
+
That block runs when the application boots, and every time there is a reload.
|
13544
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13545
|
+
|
13546
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13547
|
+
Rails autoloads and reloads.
|
13548
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13549
|
+
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.
|
13550
|
+
|
13551
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13552
|
+
to be an error condition in future versions of Rails.
|
13553
|
+
|
13554
|
+
Reloading does not reboot the application, and therefore code executed during
|
13555
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13556
|
+
the expected changes won't be reflected in that stale Module object.
|
13557
|
+
|
13558
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13559
|
+
|
13560
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13561
|
+
callback this way:
|
13562
|
+
|
13563
|
+
Rails.application.reloader.to_prepare do
|
13564
|
+
# Autoload classes and modules needed at boot time here.
|
13565
|
+
end
|
13566
|
+
|
13567
|
+
That block runs when the application boots, and every time there is a reload.
|
13568
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13569
|
+
|
13570
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13571
|
+
Rails autoloads and reloads.
|
13572
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13573
|
+
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.
|
13574
|
+
|
13575
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13576
|
+
to be an error condition in future versions of Rails.
|
13577
|
+
|
13578
|
+
Reloading does not reboot the application, and therefore code executed during
|
13579
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13580
|
+
the expected changes won't be reflected in that stale Module object.
|
13581
|
+
|
13582
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13583
|
+
|
13584
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13585
|
+
callback this way:
|
13586
|
+
|
13587
|
+
Rails.application.reloader.to_prepare do
|
13588
|
+
# Autoload classes and modules needed at boot time here.
|
13589
|
+
end
|
13590
|
+
|
13591
|
+
That block runs when the application boots, and every time there is a reload.
|
13592
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13593
|
+
|
13594
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13595
|
+
Rails autoloads and reloads.
|
13596
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13597
|
+
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.
|
13598
|
+
|
13599
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13600
|
+
to be an error condition in future versions of Rails.
|
13601
|
+
|
13602
|
+
Reloading does not reboot the application, and therefore code executed during
|
13603
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13604
|
+
the expected changes won't be reflected in that stale Module object.
|
13605
|
+
|
13606
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13607
|
+
|
13608
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13609
|
+
callback this way:
|
13610
|
+
|
13611
|
+
Rails.application.reloader.to_prepare do
|
13612
|
+
# Autoload classes and modules needed at boot time here.
|
13613
|
+
end
|
13614
|
+
|
13615
|
+
That block runs when the application boots, and every time there is a reload.
|
13616
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13617
|
+
|
13618
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13619
|
+
Rails autoloads and reloads.
|
13620
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13621
|
+
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.
|
13622
|
+
|
13623
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13624
|
+
to be an error condition in future versions of Rails.
|
13625
|
+
|
13626
|
+
Reloading does not reboot the application, and therefore code executed during
|
13627
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13628
|
+
the expected changes won't be reflected in that stale Module object.
|
13629
|
+
|
13630
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13631
|
+
|
13632
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13633
|
+
callback this way:
|
13634
|
+
|
13635
|
+
Rails.application.reloader.to_prepare do
|
13636
|
+
# Autoload classes and modules needed at boot time here.
|
13637
|
+
end
|
13638
|
+
|
13639
|
+
That block runs when the application boots, and every time there is a reload.
|
13640
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13641
|
+
|
13642
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13643
|
+
Rails autoloads and reloads.
|
13644
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13645
|
+
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.
|
13646
|
+
|
13647
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13648
|
+
to be an error condition in future versions of Rails.
|
13649
|
+
|
13650
|
+
Reloading does not reboot the application, and therefore code executed during
|
13651
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13652
|
+
the expected changes won't be reflected in that stale Module object.
|
13653
|
+
|
13654
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13655
|
+
|
13656
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13657
|
+
callback this way:
|
13658
|
+
|
13659
|
+
Rails.application.reloader.to_prepare do
|
13660
|
+
# Autoload classes and modules needed at boot time here.
|
13661
|
+
end
|
13662
|
+
|
13663
|
+
That block runs when the application boots, and every time there is a reload.
|
13664
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13665
|
+
|
13666
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13667
|
+
Rails autoloads and reloads.
|
13668
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13669
|
+
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.
|
13670
|
+
|
13671
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13672
|
+
to be an error condition in future versions of Rails.
|
13673
|
+
|
13674
|
+
Reloading does not reboot the application, and therefore code executed during
|
13675
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13676
|
+
the expected changes won't be reflected in that stale Module object.
|
13677
|
+
|
13678
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13679
|
+
|
13680
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13681
|
+
callback this way:
|
13682
|
+
|
13683
|
+
Rails.application.reloader.to_prepare do
|
13684
|
+
# Autoload classes and modules needed at boot time here.
|
13685
|
+
end
|
13686
|
+
|
13687
|
+
That block runs when the application boots, and every time there is a reload.
|
13688
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13689
|
+
|
13690
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13691
|
+
Rails autoloads and reloads.
|
13692
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13693
|
+
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.
|
13694
|
+
|
13695
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13696
|
+
to be an error condition in future versions of Rails.
|
13697
|
+
|
13698
|
+
Reloading does not reboot the application, and therefore code executed during
|
13699
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13700
|
+
the expected changes won't be reflected in that stale Module object.
|
13701
|
+
|
13702
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13703
|
+
|
13704
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13705
|
+
callback this way:
|
13706
|
+
|
13707
|
+
Rails.application.reloader.to_prepare do
|
13708
|
+
# Autoload classes and modules needed at boot time here.
|
13709
|
+
end
|
13710
|
+
|
13711
|
+
That block runs when the application boots, and every time there is a reload.
|
13712
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13713
|
+
|
13714
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13715
|
+
Rails autoloads and reloads.
|
13716
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13717
|
+
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.
|
13718
|
+
|
13719
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13720
|
+
to be an error condition in future versions of Rails.
|
13721
|
+
|
13722
|
+
Reloading does not reboot the application, and therefore code executed during
|
13723
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13724
|
+
the expected changes won't be reflected in that stale Module object.
|
13725
|
+
|
13726
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13727
|
+
|
13728
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13729
|
+
callback this way:
|
13730
|
+
|
13731
|
+
Rails.application.reloader.to_prepare do
|
13732
|
+
# Autoload classes and modules needed at boot time here.
|
13733
|
+
end
|
13734
|
+
|
13735
|
+
That block runs when the application boots, and every time there is a reload.
|
13736
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13737
|
+
|
13738
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13739
|
+
Rails autoloads and reloads.
|
13740
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13741
|
+
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.
|
13742
|
+
|
13743
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13744
|
+
to be an error condition in future versions of Rails.
|
13745
|
+
|
13746
|
+
Reloading does not reboot the application, and therefore code executed during
|
13747
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13748
|
+
the expected changes won't be reflected in that stale Module object.
|
13749
|
+
|
13750
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13751
|
+
|
13752
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13753
|
+
callback this way:
|
13754
|
+
|
13755
|
+
Rails.application.reloader.to_prepare do
|
13756
|
+
# Autoload classes and modules needed at boot time here.
|
13757
|
+
end
|
13758
|
+
|
13759
|
+
That block runs when the application boots, and every time there is a reload.
|
13760
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13761
|
+
|
13762
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13763
|
+
Rails autoloads and reloads.
|
13764
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13765
|
+
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.
|
13766
|
+
|
13767
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13768
|
+
to be an error condition in future versions of Rails.
|
13769
|
+
|
13770
|
+
Reloading does not reboot the application, and therefore code executed during
|
13771
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13772
|
+
the expected changes won't be reflected in that stale Module object.
|
13773
|
+
|
13774
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13775
|
+
|
13776
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13777
|
+
callback this way:
|
13778
|
+
|
13779
|
+
Rails.application.reloader.to_prepare do
|
13780
|
+
# Autoload classes and modules needed at boot time here.
|
13781
|
+
end
|
13782
|
+
|
13783
|
+
That block runs when the application boots, and every time there is a reload.
|
13784
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13785
|
+
|
13786
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13787
|
+
Rails autoloads and reloads.
|
13788
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13789
|
+
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.
|
13790
|
+
|
13791
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
13792
|
+
to be an error condition in future versions of Rails.
|
13793
|
+
|
13794
|
+
Reloading does not reboot the application, and therefore code executed during
|
13795
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
13796
|
+
the expected changes won't be reflected in that stale Module object.
|
13797
|
+
|
13798
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
13799
|
+
|
13800
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
13801
|
+
callback this way:
|
13802
|
+
|
13803
|
+
Rails.application.reloader.to_prepare do
|
13804
|
+
# Autoload classes and modules needed at boot time here.
|
13805
|
+
end
|
13806
|
+
|
13807
|
+
That block runs when the application boots, and every time there is a reload.
|
13808
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
13809
|
+
|
13810
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
13811
|
+
Rails autoloads and reloads.
|
13812
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
13813
|
+
[1m[36mActiveRecord::SchemaMigration Load (5.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13814
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13815
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13816
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT pg_try_advisory_lock(6140174353533887940)[0m
|
13817
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13818
|
+
Migrating to MigrateLocalizedApidaeObjFields (20190127210921)
|
13819
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT pg_advisory_unlock(6140174353533887940)[0m
|
13820
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13821
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13822
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13823
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_try_advisory_lock(6140174353533887940)[0m
|
13824
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13825
|
+
Migrating to MigrateLocalizedApidaeObjFields (20190127210921)
|
13826
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
13827
|
+
[1m[36mApidae::Obj Load (2.4ms)[0m [1m[34mSELECT "apidae_objs".* FROM "apidae_objs" WHERE "apidae_objs"."root_obj_id" IS NULL[0m
|
13828
|
+
[1m[36mTRANSACTION (1.2ms)[0m [1m[31mROLLBACK[0m
|
13829
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT pg_advisory_unlock(6140174353533887940)[0m
|
13830
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT pg_try_advisory_lock(6140174353533887940)[0m
|
13831
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13832
|
+
[1m[36mActiveRecord::InternalMetadata Load (4.3ms)[0m [1m[34mSELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1[0m [[nil, "environment"]]
|
13833
|
+
[1m[36mActiveRecord::InternalMetadata Create (4.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'development', '2025-01-30 07:43:39.424320', '2025-01-30 07:43:39.424324') RETURNING "key"[0m
|
13834
|
+
Migrating to MigrateLocalizedApidaeReferences (20190127213602)
|
13835
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
13836
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[31mROLLBACK[0m
|
13837
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(6140174353533887940)[0m
|
13838
|
+
[1m[36mActiveRecord::SchemaMigration Load (3.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13839
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13840
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13841
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_try_advisory_lock(6140174353533887940)[0m
|
13842
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13843
|
+
Migrating to MigrateLocalizedApidaeObjFields (20190127210921)
|
13844
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
13845
|
+
[1m[36mApidae::Obj Load (2.4ms)[0m [1m[34mSELECT "apidae_objs".* FROM "apidae_objs" WHERE "apidae_objs"."root_obj_id" IS NULL[0m
|
13846
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[31mROLLBACK[0m
|
13847
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT pg_advisory_unlock(6140174353533887940)[0m
|
@@ -0,0 +1 @@
|
|
1
|
+
c313846d623402cd2db91933a940355c31aad575dc2dd6913fe87533a005a0614e1fab94bfb6dd28b6e07acfe9767a4b00c9ee8cec7964858623ae7197bef92b
|
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.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean-Baptiste Vilain
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -253,6 +253,7 @@ files:
|
|
253
253
|
- test/dummy/public/422.html
|
254
254
|
- test/dummy/public/500.html
|
255
255
|
- test/dummy/public/favicon.ico
|
256
|
+
- test/dummy/tmp/local_secret.txt
|
256
257
|
- test/fixtures/apidae/exports.yml
|
257
258
|
- test/fixtures/apidae/objects.yml
|
258
259
|
- test/fixtures/apidae/references.yml
|
@@ -272,7 +273,7 @@ homepage: http://dev.apidae-tourisme.com/
|
|
272
273
|
licenses:
|
273
274
|
- MIT
|
274
275
|
metadata: {}
|
275
|
-
post_install_message:
|
276
|
+
post_install_message:
|
276
277
|
rdoc_options: []
|
277
278
|
require_paths:
|
278
279
|
- lib
|
@@ -287,80 +288,81 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
287
288
|
- !ruby/object:Gem::Version
|
288
289
|
version: '0'
|
289
290
|
requirements: []
|
290
|
-
rubygems_version: 3.
|
291
|
-
signing_key:
|
291
|
+
rubygems_version: 3.3.26
|
292
|
+
signing_key:
|
292
293
|
specification_version: 4
|
293
294
|
summary: A Ruby on Rails engine for projects that involve Apidae data
|
294
295
|
test_files:
|
295
|
-
- test/
|
296
|
-
- test/
|
296
|
+
- test/apidae_test.rb
|
297
|
+
- test/controllers/apidae/api_controller_test.rb
|
298
|
+
- test/controllers/apidae/dashboard_controller_test.rb
|
299
|
+
- test/controllers/apidae/import_controller_test.rb
|
300
|
+
- test/controllers/apidae/objects_controller_test.rb
|
301
|
+
- test/controllers/apidae/references_controller_test.rb
|
302
|
+
- test/controllers/apidae/selections_controller_test.rb
|
303
|
+
- test/data/cos_winter.json
|
304
|
+
- test/data/delete_selections.json
|
305
|
+
- test/data/deletion.json
|
306
|
+
- test/data/equ_groups.json
|
307
|
+
- test/data/hot_fr_en.json
|
308
|
+
- test/data/json_export.zip
|
309
|
+
- test/data/selections.json
|
310
|
+
- test/data/shared_selections.json
|
311
|
+
- test/data/structure.json
|
312
|
+
- test/data/update_selections.json
|
313
|
+
- test/dummy/README.rdoc
|
314
|
+
- test/dummy/Rakefile
|
297
315
|
- test/dummy/app/assets/config/manifest.js
|
298
316
|
- test/dummy/app/assets/javascripts/application.js
|
299
317
|
- test/dummy/app/assets/stylesheets/application.css
|
318
|
+
- test/dummy/app/controllers/application_controller.rb
|
300
319
|
- test/dummy/app/helpers/application_helper.rb
|
301
|
-
- test/dummy/
|
302
|
-
- test/dummy/bin/setup
|
320
|
+
- test/dummy/app/views/layouts/application.html.erb
|
303
321
|
- test/dummy/bin/bundle
|
304
322
|
- test/dummy/bin/rails
|
305
|
-
- test/dummy/
|
306
|
-
- test/dummy/
|
307
|
-
- test/dummy/config/locales/en.yml
|
308
|
-
- test/dummy/config/environments/production.rb
|
309
|
-
- test/dummy/config/environments/development.rb
|
310
|
-
- test/dummy/config/environments/test.rb
|
311
|
-
- test/dummy/config/environment.rb
|
323
|
+
- test/dummy/bin/rake
|
324
|
+
- test/dummy/bin/setup
|
312
325
|
- test/dummy/config/application.rb
|
313
|
-
- test/dummy/config/database.yml
|
314
326
|
- test/dummy/config/boot.rb
|
327
|
+
- test/dummy/config/database.yml
|
328
|
+
- test/dummy/config/environment.rb
|
329
|
+
- test/dummy/config/environments/development.rb
|
330
|
+
- test/dummy/config/environments/production.rb
|
331
|
+
- test/dummy/config/environments/test.rb
|
332
|
+
- test/dummy/config/initializers/apidae.rb
|
333
|
+
- test/dummy/config/initializers/assets.rb
|
315
334
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
316
|
-
- test/dummy/config/initializers/
|
335
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
317
336
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
337
|
+
- test/dummy/config/initializers/inflections.rb
|
338
|
+
- test/dummy/config/initializers/mime_types.rb
|
318
339
|
- test/dummy/config/initializers/session_store.rb
|
319
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
320
|
-
- test/dummy/config/initializers/assets.rb
|
321
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
322
340
|
- test/dummy/config/initializers/to_time_preserves_timezone.rb
|
323
|
-
- test/dummy/config/initializers/
|
324
|
-
- test/dummy/config/
|
341
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
342
|
+
- test/dummy/config/locales/en.yml
|
343
|
+
- test/dummy/config/routes.rb
|
344
|
+
- test/dummy/config/secrets.yml
|
325
345
|
- test/dummy/config.ru
|
326
|
-
- test/dummy/Rakefile
|
327
|
-
- test/dummy/public/favicon.ico
|
328
|
-
- test/dummy/public/422.html
|
329
|
-
- test/dummy/public/500.html
|
330
|
-
- test/dummy/public/404.html
|
331
346
|
- test/dummy/db/schema.rb
|
332
|
-
- test/dummy/log/test.log
|
333
347
|
- test/dummy/log/development.log
|
334
|
-
- test/dummy/
|
348
|
+
- test/dummy/log/test.log
|
349
|
+
- test/dummy/public/404.html
|
350
|
+
- test/dummy/public/422.html
|
351
|
+
- test/dummy/public/500.html
|
352
|
+
- test/dummy/public/favicon.ico
|
353
|
+
- test/dummy/tmp/local_secret.txt
|
354
|
+
- test/fixtures/apidae/exports.yml
|
355
|
+
- test/fixtures/apidae/objects.yml
|
356
|
+
- test/fixtures/apidae/references.yml
|
357
|
+
- test/fixtures/apidae/selection_objects.yml
|
358
|
+
- test/fixtures/apidae/selections.yml
|
359
|
+
- test/fixtures/apidae/towns.yml
|
335
360
|
- test/integration/navigation_test.rb
|
336
|
-
- test/models/apidae/selection_object_test.rb
|
337
|
-
- test/models/apidae/selection_test.rb
|
338
|
-
- test/models/apidae/file_import_test.rb
|
339
361
|
- test/models/apidae/export_test.rb
|
362
|
+
- test/models/apidae/file_import_test.rb
|
363
|
+
- test/models/apidae/obj_test.rb
|
340
364
|
- test/models/apidae/reference_test.rb
|
365
|
+
- test/models/apidae/selection_object_test.rb
|
366
|
+
- test/models/apidae/selection_test.rb
|
341
367
|
- test/models/apidae/town_test.rb
|
342
|
-
- test/models/apidae/obj_test.rb
|
343
|
-
- test/fixtures/apidae/selection_objects.yml
|
344
|
-
- test/fixtures/apidae/towns.yml
|
345
|
-
- test/fixtures/apidae/references.yml
|
346
|
-
- test/fixtures/apidae/objects.yml
|
347
|
-
- test/fixtures/apidae/selections.yml
|
348
|
-
- test/fixtures/apidae/exports.yml
|
349
368
|
- test/test_helper.rb
|
350
|
-
- test/apidae_test.rb
|
351
|
-
- test/controllers/apidae/selections_controller_test.rb
|
352
|
-
- test/controllers/apidae/api_controller_test.rb
|
353
|
-
- test/controllers/apidae/objects_controller_test.rb
|
354
|
-
- test/controllers/apidae/dashboard_controller_test.rb
|
355
|
-
- test/controllers/apidae/references_controller_test.rb
|
356
|
-
- test/controllers/apidae/import_controller_test.rb
|
357
|
-
- test/data/shared_selections.json
|
358
|
-
- test/data/equ_groups.json
|
359
|
-
- test/data/update_selections.json
|
360
|
-
- test/data/json_export.zip
|
361
|
-
- test/data/delete_selections.json
|
362
|
-
- test/data/hot_fr_en.json
|
363
|
-
- test/data/structure.json
|
364
|
-
- test/data/deletion.json
|
365
|
-
- test/data/selections.json
|
366
|
-
- test/data/cos_winter.json
|