-
Notifications
You must be signed in to change notification settings - Fork 2
/
couchdb.gemspec
26 lines (20 loc) · 1.14 KB
/
couchdb.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
# encoding: utf-8
Gem::Specification.new do |specification|
specification.name = "couchdb"
specification.version = "0.2.2"
specification.date = "2011-10-19"
specification.authors = [ "Philipp Brüll" ]
specification.email = "b.phifty@gmail.com"
specification.homepage = "http://github.com/phifty/couchdb"
specification.rubyforge_project = "couchdb"
specification.summary = "A straight-forward client for CouchDB REST API."
specification.description = "A straight-forward client for CouchDB REST API. The resources exposed by the API are simply wrapped into classes."
specification.has_rdoc = true
specification.files = [ "README.rdoc", "LICENSE", "Rakefile" ] + Dir["lib/**/*"] + Dir["spec/**/*"]
specification.extra_rdoc_files = [ "README.rdoc" ]
specification.require_path = "lib"
specification.test_files = Dir["spec/**/*_spec.rb"]
specification.add_dependency "transport", ">= 1.0.1"
specification.add_development_dependency "rspec", ">= 2"
specification.add_development_dependency "reek", ">= 1.2"
end