apidae 1.3.7 → 1.3.8
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 +24 -0
- data/test/dummy/log/test.log +754 -0
- data/test/models/apidae/obj_test.rb +10 -3
- 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: fcb280b4660f8ea2bbcf7ee76a7b618c00bcf9e363423fae013ce626681b2108
|
4
|
+
data.tar.gz: 073b41e45931ee6690e4edc8e8c07b3f0ca2ec6479471a2726a6e43033a9e6e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a82f16675847e98e2115f06b4185648625eeb2c3d7ebda7967e32cad3e816073a3bccc0549dc6ae4f7eb59465f559459ce32e7d79453b9878ba60527dc54d84e
|
7
|
+
data.tar.gz: c80d4e36df23e913c9a52062eb657a86582be9c9911c7c53289ec638ea0cd41d4d1506e189fad859e70475f099fb6c373d3b141ec87322a5d8a93f596ca1f86e
|
@@ -331,7 +331,7 @@ module Apidae
|
|
331
331
|
def self.parse_booking(reservation_hash, visits_hash, *locales)
|
332
332
|
booking_hash = {}
|
333
333
|
if reservation_hash
|
334
|
-
booking_hash[:booking_desc] = node_value(reservation_hash, :complement, *locales)
|
334
|
+
booking_hash[:booking_desc] = node_value(reservation_hash, :complement, *locales)
|
335
335
|
booking_hash[:booking_entities] = reservation_hash[:organismes]
|
336
336
|
end
|
337
337
|
if visits_hash
|
data/lib/apidae/version.rb
CHANGED
@@ -22,3 +22,27 @@ 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)
|