oddb2xml 3.0.24 → 3.0.26
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/.gitignore +3 -1
- data/CLAUDE.md +15 -2
- data/Elexis_Artikelstamm_v6.xsd +559 -0
- data/Gemfile.lock +1 -1
- data/History.txt +6 -0
- data/README.md +58 -1
- data/lib/oddb2xml/builder.rb +51 -11
- data/lib/oddb2xml/cli.rb +4 -4
- data/lib/oddb2xml/extractor.rb +4 -1
- data/lib/oddb2xml/fhir_support.rb +6 -0
- data/lib/oddb2xml/options.rb +1 -1
- data/lib/oddb2xml/version.rb +1 -1
- data/scripts/generate_index_html.sh +202 -0
- data/scripts/run_oddb2xml.sh +38 -1
- data/scripts/setup_mediupdatexml_web.sh +110 -0
- data/scripts/swissmedic_watch.sh +85 -0
- data/scripts/visitor_stats.py +324 -0
- data/spec/artikelstamm_spec.rb +14 -14
- data/spec/fhir_spec.rb +47 -0
- metadata +6 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oddb2xml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yasuhiro Asaka, Zeno R.R. Davatz, Niklaus Giger
|
|
@@ -449,6 +449,7 @@ files:
|
|
|
449
449
|
- CLAUDE.md
|
|
450
450
|
- Elexis_Artikelstamm_v003.xsd
|
|
451
451
|
- Elexis_Artikelstamm_v5.xsd
|
|
452
|
+
- Elexis_Artikelstamm_v6.xsd
|
|
452
453
|
- Gemfile
|
|
453
454
|
- Gemfile.lock
|
|
454
455
|
- History.txt
|
|
@@ -496,8 +497,12 @@ files:
|
|
|
496
497
|
- oddb2xml.gemspec
|
|
497
498
|
- oddb2xml.xsd
|
|
498
499
|
- oddb_calc.xsd
|
|
500
|
+
- scripts/generate_index_html.sh
|
|
499
501
|
- scripts/run_oddb2xml.sh
|
|
502
|
+
- scripts/setup_mediupdatexml_web.sh
|
|
503
|
+
- scripts/swissmedic_watch.sh
|
|
500
504
|
- scripts/transfer.sh
|
|
505
|
+
- scripts/visitor_stats.py
|
|
501
506
|
- spec/artikelstamm_spec.rb
|
|
502
507
|
- spec/builder_spec.rb
|
|
503
508
|
- spec/calc_spec.rb
|