Sha256: 9d5d6a7765553a794f845ed26511ddd9b8e2fdcb9556e4284744ee5de535a47a
Contents?: true
Size: 1.81 KB
Versions: 3
Compression:
Stored size: 1.81 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'adiwg/mdtranslator/version' Gem::Specification.new do |spec| spec.name = "adiwg-mdtranslator" spec.version = ADIWG::Mdtranslator::VERSION spec.authors = ["Stan Smith", "Josh Bradley"] spec.email = ["stansmith@usgs.gov", "joshua_bradley@fws.gov"] 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).} 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 simple JSON using 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.} spec.homepage = "http://www.adiwg.org/mdTranslator" spec.license = "UNLICENSED" spec.files = %x(git ls-files).split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(tc|test|spec|features)/}) spec.require_paths = ["lib"] spec.required_ruby_version = '>= 2.1' spec.add_development_dependency "bundler", "~> 1" spec.add_development_dependency "rake", "~> 10" spec.add_development_dependency "minitest", "~> 5" spec.add_runtime_dependency "json", "~> 1.8" spec.add_runtime_dependency "builder", "~> 3.2" spec.add_runtime_dependency "thor", "~> 0.19" spec.add_runtime_dependency "uuidtools", "~> 2.1" spec.add_runtime_dependency "json-schema", "~> 2.4.0", "< 2.5.0" spec.add_runtime_dependency "adiwg-mdjson_schemas", "~> 1.0.0" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
adiwg-mdtranslator-1.1.1 | adiwg-mdtranslator.gemspec |
adiwg-mdtranslator-1.1.0 | adiwg-mdtranslator.gemspec |
adiwg-mdtranslator-1.0.0 | adiwg-mdtranslator.gemspec |