apidae 1.2.19 → 1.2.20

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0533c1fd04de205f113339f04a402ce3ade60a4c0a47a75b947337e041ba936
4
- data.tar.gz: fb9eee8ff01c807e496b824e98df76a44f71c30864e882ac1a533e1e399a44b7
3
+ metadata.gz: 3db2f4b2a2867ecf0452eeef11e4c9b547d0c5d749746e59d3f91832a2b49c3e
4
+ data.tar.gz: 416683aa3f8d745d5511adfc47d084788aaab1cc99c948ed5c5d5e7b39bf0890
5
5
  SHA512:
6
- metadata.gz: 1df1ce2301d3ba225cf85afa85f68bac3fb1e3a603b8222840972c6df65e40ff0cac84871699fc41371c47489ea2dce77f4b487682787777e2428fa637b8dec6
7
- data.tar.gz: 4dda8701538ab5a7f2e3956f6c9d69827ae2648477346ed914680fa2e9a80f2207ba441188dd32df006bee9ad91c6dbf7da77fc401395072d4a598451ecf1d44
6
+ metadata.gz: 5e745de182af2dc2cc9295bd0c70224a2aa464cc34a3da976fc22a1901e49f12cf2c865ff50ef5708d7830bd74f0694a26c9c2acaecd900ac7ca690134447d26
7
+ data.tar.gz: 4207f3dd0e6630f36f77369b0d5b7c7ddd576b303acbecaeb5bb2c3913f0b49f6056c74fe229632b21c2588e5896ff6796d10541e5cd7bf75efc316932445331
@@ -113,7 +113,7 @@ module Apidae
113
113
  short_desc: node_value(data_hash, :descriptifCourt, *locales),
114
114
  long_desc: node_value(data_hash, :descriptifDetaille, *locales),
115
115
  theme_desc: data_hash[:descriptifsThematises].blank? ? {} : Hash[data_hash[:descriptifsThematises].map {|th| [node_id(th, :theme), node_value(th, :description, *locales)]}],
116
- private_desc: private_data.blank? ? {} : Hash[private_data.map {|d| [d[:nomTechnique], node_value(d, :descriptif, *locales)]}]
116
+ private_desc: private_data.blank? ? {} : Hash[private_data.map {|d| [d[:nomTechnique], d[:libelleFr] || node_value(d, :descriptif, *locales)]}]
117
117
  }
118
118
  end
119
119
  end
@@ -1,3 +1,3 @@
1
1
  module Apidae
2
- VERSION = "1.2.19"
2
+ VERSION = "1.2.20"
3
3
  end
@@ -373,3 +373,27 @@ Check the "Autoloading and Reloading Constants" guide to learn more about how
373
373
  Rails autoloads and reloads.
374
374
  (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
375
375
   (170.6ms) SELECT COUNT(*) FROM "apidae_objs" WHERE "apidae_objs"."root_obj_id" IS NULL
376
+ 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.
377
+
378
+ Being able to do this is deprecated. Autoloading during initialization is going
379
+ to be an error condition in future versions of Rails.
380
+
381
+ Reloading does not reboot the application, and therefore code executed during
382
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
383
+ the expected changes won't be reflected in that stale Module object.
384
+
385
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
386
+
387
+ In order to autoload safely at boot time, please wrap your code in a reloader
388
+ callback this way:
389
+
390
+ Rails.application.reloader.to_prepare do
391
+ # Autoload classes and modules needed at boot time here.
392
+ end
393
+
394
+ That block runs when the application boots, and every time there is a reload.
395
+ For historical reasons, it may run twice, so it has to be idempotent.
396
+
397
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
398
+ Rails autoloads and reloads.
399
+ (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.2.19
4
+ version: 1.2.20
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: 2021-07-27 00:00:00.000000000 Z
11
+ date: 2021-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails