-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocumentcloud.gemspec
More file actions
27 lines (21 loc) · 939 Bytes
/
documentcloud.gemspec
File metadata and controls
27 lines (21 loc) · 939 Bytes
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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "document_cloud/version"
Gem::Specification.new do |spec|
spec.name = "documentcloud"
spec.version = DocumentCloud::Version
spec.description = "Rubygem for interacting with the DocumentCloud API"
spec.summary = spec.description
spec.authors = ["Miles Zimmerman"]
spec.email = ["mileszim@protonmail.com"]
spec.homepage = "https://github.com/mileszim/documentcloud"
spec.licenses = ["MIT"]
spec.files = %w(LICENSE README.md documentcloud.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "rest-client", "~> 1.8"
spec.add_dependency "multi_json", "~> 1.8"
spec.add_development_dependency "rspec", "~> 3.8"
end