adiwg-mdtranslator 2.0.0rc2 → 2.0.0rc3

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: 67a8fedee867819701e4bb62f5e96ae04df7d6a3
4
- data.tar.gz: 619bed91c53f7421dd15154cf01f4a7ec0834a76
3
+ metadata.gz: 1b34a86163000468f677f4bf2b9ec4d99ac7a3b7
4
+ data.tar.gz: ab59fc169dd40eae67f85cdc18435da669c213ad
5
5
  SHA512:
6
- metadata.gz: a4a3f729cd405218eee0f6c29fabd6e0fc9177f9974acd8bb37f9e17a5f2112013853ef18e1cb51fd2df14d0e46087384268fa883e2f878b114d822ab7ea8eeb
7
- data.tar.gz: 94e309d0cc0577bd6ca6ab5432d3d607232b6d47969c9c288b16a940269c24fdf97609832df4964a4718fa3016bc826b5550f658e28bdaa24dfc208669279a58
6
+ metadata.gz: 2544e744a8a65c009ffd123072828077757d49cc96d711e03ed5279a1d5e014396578f6df74d13e1cdaf5051f17edf66aec3f87279f6e2a599f35e1b714198b2
7
+ data.tar.gz: c8d2661db5830556659a2c938618d763a8e44a90facbbc1ce2c810b5801c723d321a4039faade0dd7a0bb104e05f968f85b289a08f0bdec3441b8e7f94c59792
data/Rakefile CHANGED
@@ -8,6 +8,7 @@ Rake::TestTask.new do |t|
8
8
  'test/writers/iso19115-2/tc*.rb',
9
9
  'test/writers/iso19110/tc*.rb',
10
10
  'test/writers/mdJson/tc*.rb',
11
+ 'test/writers/sbJson/tc*.rb',
11
12
  'test/translator/tc*.rb'
12
13
  ]
13
14
  t.verbose = true
@@ -1,39 +1,40 @@
1
1
  # coding: utf-8
2
+ # History
3
+ # Stan Smith 2017-05-16 remove rgeo 0.5 support
4
+
2
5
  lib = File.expand_path('../lib', __FILE__)
3
6
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
7
 
5
8
  require 'adiwg/mdtranslator/version'
6
9
 
7
10
  Gem::Specification.new do |spec|
8
- spec.name = "adiwg-mdtranslator"
9
- spec.version = ADIWG::Mdtranslator::VERSION
10
- spec.authors = ["Stan Smith", "Josh Bradley"]
11
- spec.email = ["stansmith@usgs.gov", "joshua_bradley@fws.gov"]
12
- spec.summary = %q{The mdtranslator (metadata translator) is a tool for translating metadata in one format to another. The tool is written and maintained by the Alaska Data Integration Working Group (ADIwg).}
13
- spec.description = %q{The mdtranslator was written by the Alaska Data Integration Working Group (ADIwg) to assist with creating ISO 19139 metadata records. Input to the mdtranslator is JSON conforming to the mdJson-schema. The mdtranslator architecture allows developers to write additional readers for other input formats and/or write additional writers for other output other than ISO 19139.}
14
- spec.homepage = "http://www.adiwg.org/mdTranslator"
15
- spec.license = "UNLICENSED"
16
-
17
- spec.files = %x(git ls-files).split($/).delete_if{|f| /^test*/.match(f)}
18
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
- spec.test_files = spec.files.grep(%r{^(tc|test|spec|features)/})
20
- spec.require_paths = ["lib"]
21
-
22
- spec.required_ruby_version = '>= 2.1'
23
-
24
- spec.add_development_dependency "bundler", "~> 1"
25
- spec.add_development_dependency "rake", "~> 10"
26
- spec.add_development_dependency "minitest", "~> 5"
27
-
28
- spec.add_runtime_dependency "json", "~> 2.0"
29
- spec.add_runtime_dependency "builder", "~> 3.2"
30
- spec.add_runtime_dependency "thor", "~> 0.19"
31
- spec.add_runtime_dependency "uuidtools", "~> 2.1"
32
- spec.add_runtime_dependency "json-schema", "~> 2.7"
33
- spec.add_runtime_dependency "adiwg-mdjson_schemas", ">= 2.0"
34
- spec.add_runtime_dependency "adiwg-mdcodes", "~> 2.1"
35
- spec.add_runtime_dependency "jbuilder", "~> 2.5"
36
- spec.add_runtime_dependency "rgeo", "~> 0.5"
37
- spec.add_runtime_dependency "activesupport", "< 5"
11
+ spec.name = "adiwg-mdtranslator"
12
+ spec.version = ADIWG::Mdtranslator::VERSION
13
+ spec.authors = ["Stan Smith", "Josh Bradley"]
14
+ spec.email = ["stansmith@usgs.gov", "joshua_bradley@fws.gov"]
15
+ spec.summary = %q{The mdtranslator (metadata translator) is a tool for translating metadata in one format to another. The tool is written and maintained by the Alaska Data Integration Working Group (ADIwg).}
16
+ spec.description = %q{The mdtranslator was written by the Alaska Data Integration Working Group (ADIwg) to assist with creating ISO 19139 metadata records. Input to the mdtranslator is JSON conforming to the mdJson-schema. The mdtranslator architecture allows developers to write additional readers for other input formats and/or write additional writers for other output other than ISO 19139.}
17
+ spec.homepage = "http://www.adiwg.org/mdTranslator"
18
+ spec.license = "UNLICENSED"
19
+
20
+ spec.files = %x(git ls-files).split($/).delete_if {|f| /^test*/.match(f)}
21
+ spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f)}
22
+ spec.test_files = spec.files.grep(%r{^(tc|test|spec|features)/})
23
+ spec.require_paths = ["lib"]
24
+
25
+ spec.required_ruby_version = '>= 2.1'
26
+
27
+ spec.add_development_dependency "bundler", "~> 1"
28
+ spec.add_development_dependency "rake", "~> 10"
29
+ spec.add_development_dependency "minitest", "~> 5"
30
+
31
+ spec.add_runtime_dependency "json", "~> 2.0"
32
+ spec.add_runtime_dependency "builder", "~> 3.2"
33
+ spec.add_runtime_dependency "thor", "~> 0.19"
34
+ spec.add_runtime_dependency "uuidtools", "~> 2.1"
35
+ spec.add_runtime_dependency "json-schema", "~> 2.7"
36
+ spec.add_runtime_dependency "adiwg-mdjson_schemas", ">= 2.1.1"
37
+ spec.add_runtime_dependency "adiwg-mdcodes", "~> 2.1"
38
+ spec.add_runtime_dependency "jbuilder", "~> 2.5"
38
39
 
39
40
  end