Sha256: f29a959129766f0fe7b6012e9f46bea1584f3ba8825b91dfea9b115b0e1489b4
Contents?: true
Size: 1.03 KB
Versions: 14
Compression:
Stored size: 1.03 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.0" spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.1" end
Version data entries
14 entries across 14 versions & 1 rubygems