Sha256: b5687af2d27cf16d07424f45b1a86a48a457e022c87e32f4779542b5bd701335
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "ezid-client" spec.version = File.read(File.expand_path("../VERSION", __FILE__)).chomp spec.authors = ["David Chandek-Stark"] spec.email = ["dchandekstark@gmail.com"] spec.summary = "Ruby client for EZID API Version 2" spec.description = "Ruby client for EZID API Version 2 (http://ezid.cdlib.org/doc/apidoc.html)" spec.homepage = "https://github.com/duke-libraries/ezid-client" spec.license = "BSD-3-Clause" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.required_ruby_version = "~> 2.1" spec.add_dependency "hashie", "~> 3.4", ">= 3.4.3" spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.4" spec.add_development_dependency "rspec-its", "~> 1.2" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ezid-client-1.7.1 | ezid-client.gemspec |
ezid-client-1.7.0 | ezid-client.gemspec |