adiwg-mdtranslator 2.13.1 → 2.13.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d447daf990acea59e6e75f64cbd5b77a1484a8f
|
4
|
+
data.tar.gz: d06cfba19d5862412ff07e426d21f6f798866694
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aaa8026fdbdee161e854b6b6d9fbb9a842ae1e4a646e0da71beb54cae91ad58e93ff0588928aedf798090fd02dbe37e9b01578eb2a19e2ecd846fa51417326c7
|
7
|
+
data.tar.gz: 0d9323bd60d486b000444e800fe16ca415998c17d2919244cc9fde44964c1c2e266089a0978722b06df59fbab37ec4d4516b0c819ba46a7651fd943b3e9c652e
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,29 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [v2.13.
|
3
|
+
## [v2.13.2](https://github.com/adiwg/mdTranslator/tree/v2.13.2)
|
4
4
|
|
5
|
+
[Full Changelog](https://github.com/adiwg/mdTranslator/compare/v2.13.1...v2.13.2)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Fix mdJson reader timeInterval to allow real and integer [\#200](https://github.com/adiwg/mdTranslator/pull/200) ([stansmith907](https://github.com/stansmith907))
|
10
|
+
|
11
|
+
## [v2.13.1](https://github.com/adiwg/mdTranslator/tree/v2.13.1) (2018-07-21)
|
12
|
+
[Full Changelog](https://github.com/adiwg/mdTranslator/compare/v2.13.0...v2.13.1)
|
13
|
+
|
14
|
+
**Fixed bugs:**
|
15
|
+
|
16
|
+
- Make sure topicCategories are compatible with ISO version [\#196](https://github.com/adiwg/mdTranslator/issues/196)
|
17
|
+
|
18
|
+
**Closed issues:**
|
19
|
+
|
20
|
+
- Issue with YearMonth format date translation from CSDGM to mdJSON [\#197](https://github.com/adiwg/mdTranslator/issues/197)
|
21
|
+
|
22
|
+
**Merged pull requests:**
|
23
|
+
|
24
|
+
- Refactor mdJson writer to use mdJson construction helpers [\#198](https://github.com/adiwg/mdTranslator/pull/198) ([stansmith907](https://github.com/stansmith907))
|
25
|
+
|
26
|
+
## [v2.13.0](https://github.com/adiwg/mdTranslator/tree/v2.13.0) (2018-05-11)
|
5
27
|
[Full Changelog](https://github.com/adiwg/mdTranslator/compare/v2.12.0...v2.13.0)
|
6
28
|
|
7
29
|
**Closed issues:**
|
@@ -342,7 +342,7 @@ messageList:
|
|
342
342
|
- {id: 851, message: "time instant must have dateTime or geologic age"}
|
343
343
|
|
344
344
|
- {id: 860, message: "time interval object is empty"}
|
345
|
-
- {id: 861, message: "time interval must be
|
345
|
+
- {id: 861, message: "time interval must be integer or real"}
|
346
346
|
- {id: 862, message: "time interval is missing"}
|
347
347
|
- {id: 863, message: "time interval units are missing or invalid"}
|
348
348
|
|
@@ -30,7 +30,7 @@ module ADIWG
|
|
30
30
|
if hTimeInt.has_key?('interval')
|
31
31
|
interval = hTimeInt['interval']
|
32
32
|
unless interval == ''
|
33
|
-
if interval.is_a?(
|
33
|
+
if interval.is_a?(Numeric)
|
34
34
|
intTime[:interval] = hTimeInt['interval']
|
35
35
|
else
|
36
36
|
@MessagePath.issueError(861, responseObj, inContext)
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# adiwg mdTranslator
|
2
2
|
|
3
3
|
# version 2 history
|
4
|
+
# 2.13.2 2018-07-31 fix timeInterval check to allow real and integer
|
5
|
+
# 2.13.2 2018-07-31 add minitest for adiwg-mdJson_schema example
|
4
6
|
# 2.13.1 2018-07-02 fix bug in ISO 19110 writer when dictionary empty
|
5
7
|
# 2.13.1 2018-06-12 change default time stamps from 'local' to UTC
|
6
8
|
# 2.13.1 2018-06-11 fix bug #179 remove 0 time value from date string when time not present
|
@@ -87,7 +89,7 @@
|
|
87
89
|
module ADIWG
|
88
90
|
module Mdtranslator
|
89
91
|
# current mdtranslator version
|
90
|
-
VERSION = "2.13.
|
92
|
+
VERSION = "2.13.2"
|
91
93
|
end
|
92
94
|
end
|
93
95
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: adiwg-mdtranslator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.13.
|
4
|
+
version: 2.13.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stan Smith
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-08-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -855,7 +855,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
855
855
|
version: '0'
|
856
856
|
requirements: []
|
857
857
|
rubyforge_project:
|
858
|
-
rubygems_version: 2.
|
858
|
+
rubygems_version: 2.6.8
|
859
859
|
signing_key:
|
860
860
|
specification_version: 4
|
861
861
|
summary: The mdtranslator (metadata translator) is a tool for translating metadata
|