ncs_mdes 0.9.0 → 0.10.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 CHANGED
@@ -1,6 +1,12 @@
1
1
  NCS Navigator MDES Module history
2
2
  =================================
3
3
 
4
+ 0.10.0
5
+ ------
6
+
7
+ - Introduce MDES 3.1 support using specification version
8
+ 3.1.00.00. (#22)
9
+
4
10
  0.9.0
5
11
  -----
6
12
 
data/bin/mdes-console CHANGED
@@ -22,6 +22,7 @@ $mdes20 = NcsNavigator::Mdes::Specification.new('2.0')
22
22
  $mdes21 = NcsNavigator::Mdes::Specification.new('2.1')
23
23
  $mdes22 = NcsNavigator::Mdes::Specification.new('2.2')
24
24
  $mdes30 = NcsNavigator::Mdes::Specification.new('3.0')
25
+ $mdes31 = NcsNavigator::Mdes::Specification.new('3.1')
25
26
 
26
27
  expected_loc = ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR] ?
27
28
  ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR].inspect :
@@ -29,6 +30,6 @@ expected_loc = ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR] ?
29
30
 
30
31
  puts "Documents are expected to be in #{expected_loc}."
31
32
  puts "$mdesNM is a Specification for N.M."
32
- puts "Available specifications are $mdes12, $mdes20, $mdes21, $mdes22, and $mdes30."
33
+ puts "Available specifications are $mdes12, $mdes20, $mdes21, $mdes22, $mdes30 and $mdes31."
33
34
 
34
35
  IRB.start(__FILE__)