Sha256: a7fe20d2da75bab0a18154f331a709be6a24191417f3fa292ff35cba7ea9c1cc
Contents?: true
Size: 1.97 KB
Versions: 12
Compression:
Stored size: 1.97 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 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.} 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" spec.add_runtime_dependency "adiwg-mdcodes", "~> 1.0" spec.add_runtime_dependency "jbuilder", "~> 2.5" spec.add_runtime_dependency "rgeo", "~> 0.5" end
Version data entries
12 entries across 12 versions & 1 rubygems