ncs_mdes 0.6.1 → 0.7.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.7.0
5
+ -----
6
+
7
+ - Introduce MDES 3.0 support using specification version
8
+ 3.0.00.00. (#14)
9
+
4
10
  0.6.1
5
11
  -----
6
12
 
data/bin/mdes-console CHANGED
@@ -21,15 +21,14 @@ $mdes12 = NcsNavigator::Mdes::Specification.new('1.2')
21
21
  $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
+ $mdes30 = NcsNavigator::Mdes::Specification.new('3.0')
24
25
 
25
26
  expected_loc = ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR] ?
26
27
  ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR].inspect :
27
28
  'the default location'
28
29
 
29
30
  puts "Documents are expected to be in #{expected_loc}."
30
- puts "$mdes12 is a Specification for 1.2"
31
- puts "$mdes20 is a Specification for 2.0"
32
- puts "$mdes21 is a Specification for 2.1"
33
- puts "$mdes22 is a Specification for 2.2"
31
+ puts "$mdesNM is a Specification for N.M."
32
+ puts "Available specifications are $mdes12, $mdes20, $mdes21, $mdes22, and $mdes30."
34
33
 
35
34
  IRB.start(__FILE__)