apidae 1.2.27 → 1.2.28
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/apidae_data_parser.rb +1 -1
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +48 -0
- data/test/dummy/log/test.log +754 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02b8f4d3c4d713d8fc47e92c07456104e1b05d769ebdb01bc59671e942720828
|
4
|
+
data.tar.gz: dd7d5a3f0bd190e7b4c0b03b75e113a11550f4d6c903772f9de6a60ce62da775
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ae60a8ea8f42931b011efd426d2603185650787c8a827eb2ecc0f1122e734ab04d00c25a0708126698a125ba0f8f0b41e1469665a57858be18b1a30751b45cc
|
7
|
+
data.tar.gz: f680e4fae89857c3039d1974b16f403dd8a60599ba86bd462c170446852df14f65005e623158dd0c89a9852317475d4abee51ce31ad649e65819ac36f8509fd3
|
@@ -332,7 +332,7 @@ module Apidae
|
|
332
332
|
def self.parse_booking(reservation_hash, visits_hash, *locales)
|
333
333
|
booking_hash = {}
|
334
334
|
if reservation_hash
|
335
|
-
booking_hash[:booking_desc] = node_value(reservation_hash, :complement, *locales)
|
335
|
+
booking_hash[:booking_desc] = node_value(reservation_hash, :complement, *locales)
|
336
336
|
booking_hash[:booking_entities] = reservation_hash[:organismes]
|
337
337
|
end
|
338
338
|
if visits_hash
|
data/lib/apidae/version.rb
CHANGED
@@ -22,3 +22,51 @@ For historical reasons, it may run twice, so it has to be idempotent.
|
|
22
22
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
23
23
|
Rails autoloads and reloads.
|
24
24
|
(called from <top (required)> at /Users/jbvilain/workspace/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
25
|
+
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.
|
26
|
+
|
27
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
28
|
+
to be an error condition in future versions of Rails.
|
29
|
+
|
30
|
+
Reloading does not reboot the application, and therefore code executed during
|
31
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
32
|
+
the expected changes won't be reflected in that stale Module object.
|
33
|
+
|
34
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
35
|
+
|
36
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
37
|
+
callback this way:
|
38
|
+
|
39
|
+
Rails.application.reloader.to_prepare do
|
40
|
+
# Autoload classes and modules needed at boot time here.
|
41
|
+
end
|
42
|
+
|
43
|
+
That block runs when the application boots, and every time there is a reload.
|
44
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
45
|
+
|
46
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
47
|
+
Rails autoloads and reloads.
|
48
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
49
|
+
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.
|
50
|
+
|
51
|
+
Being able to do this is deprecated. Autoloading during initialization is going
|
52
|
+
to be an error condition in future versions of Rails.
|
53
|
+
|
54
|
+
Reloading does not reboot the application, and therefore code executed during
|
55
|
+
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
56
|
+
the expected changes won't be reflected in that stale Module object.
|
57
|
+
|
58
|
+
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
59
|
+
|
60
|
+
In order to autoload safely at boot time, please wrap your code in a reloader
|
61
|
+
callback this way:
|
62
|
+
|
63
|
+
Rails.application.reloader.to_prepare do
|
64
|
+
# Autoload classes and modules needed at boot time here.
|
65
|
+
end
|
66
|
+
|
67
|
+
That block runs when the application boots, and every time there is a reload.
|
68
|
+
For historical reasons, it may run twice, so it has to be idempotent.
|
69
|
+
|
70
|
+
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
71
|
+
Rails autoloads and reloads.
|
72
|
+
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|