-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_bridge.gemspec
30 lines (26 loc) · 1.28 KB
/
api_bridge.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'api_bridge/version'
Gem::Specification.new do |spec|
spec.name = "api_bridge"
spec.version = ApiBridge::VERSION
spec.authors = ["Jessica Dussault (jduss4)", "Greg Tunink (techgique)"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{Connects CDRH rails sites to CDRH API}
spec.description = %q{The Center for Digital Research in the Humanities
(CDRH) has marked up many documents with TEI, Dublin Core,
VRA, and other encoding standards. These documents are indexed
into an API. This gem reduces repeating logic when powering sites
with the API's information.}
spec.homepage = ""
spec.license = "MIT"
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.require_paths = ["lib"]
spec.add_dependency "bundler", "~> 1.14"
spec.add_dependency "rake", "~> 12.0"
spec.add_dependency "rest-client"
spec.add_development_dependency "minitest", "~> 5.10"
end