ncs_mdes 0.3.1 → 0.4.0
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.
- data/CHANGELOG.md +16 -5
- data/documents/2.0/disposition_codes.yml +1507 -0
- data/lib/ncs_navigator/mdes/disposition_code.rb +34 -0
- data/lib/ncs_navigator/mdes/source_documents.rb +25 -0
- data/lib/ncs_navigator/mdes/specification.rb +20 -0
- data/lib/ncs_navigator/mdes/variable.rb +6 -1
- data/lib/ncs_navigator/mdes/version.rb +1 -1
- data/lib/ncs_navigator/mdes.rb +2 -0
- data/spec/ncs_navigator/mdes/source_documents_spec.rb +18 -0
- data/spec/ncs_navigator/mdes/specification_spec.rb +35 -0
- data/spec/ncs_navigator/mdes/variable_spec.rb +8 -0
- metadata +9 -38
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,23 @@
|
|
1
|
+
NCS Navigator MDES Module history
|
2
|
+
=================================
|
3
|
+
|
4
|
+
0.4.0
|
5
|
+
-----
|
6
|
+
|
7
|
+
- Consider element `minOccurs` when determining variable
|
8
|
+
requiredness (#2).
|
9
|
+
- Added disposition codes to the specification. Requires a YAML file
|
10
|
+
with all the disposition code values for the MDES version (#3).
|
11
|
+
|
1
12
|
0.3.1
|
2
|
-
|
13
|
+
-----
|
3
14
|
|
4
15
|
- Correct pattern compilation. XML Schema patterns implicitly must
|
5
16
|
match the entire value, so it's necessary to surround the value with
|
6
17
|
`^` and `$` when converting to a ruby regular expression.
|
7
18
|
|
8
19
|
0.3.0
|
9
|
-
|
20
|
+
-----
|
10
21
|
|
11
22
|
- Add foreign key / table reference support, including explicit
|
12
23
|
mappings for all ambiguous or unguessable FKs (#1).
|
@@ -14,7 +25,7 @@
|
|
14
25
|
tables.
|
15
26
|
|
16
27
|
0.2.0
|
17
|
-
|
28
|
+
-----
|
18
29
|
|
19
30
|
- Rename gem to ncs_mdes (from ncs-mdes).
|
20
31
|
- Embed the VDR transmission XSD since we now have permission to
|
@@ -22,12 +33,12 @@
|
|
22
33
|
- Update version 2.0 to be based on 2.0.01.02.
|
23
34
|
|
24
35
|
0.1.0
|
25
|
-
|
36
|
+
-----
|
26
37
|
|
27
38
|
- Add mdes-console executable.
|
28
39
|
|
29
40
|
0.0.1
|
30
|
-
|
41
|
+
-----
|
31
42
|
|
32
43
|
- First version. Reads data from VDR transmission schema for MDES 1.2
|
33
44
|
and 2.0.
|