forked from langalex/couch_potato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
couch_potato.gemspec
27 lines (23 loc) · 1.01 KB
/
couch_potato.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'couch_potato/version'
Gem::Specification.new do |s|
s.name = 'couch_potato'
s.summary = 'Ruby persistence layer for CouchDB'
s.email = '[email protected]'
s.homepage = 'http://github.com/langalex/couch_potato'
s.description = 'Ruby persistence layer for CouchDB'
s.authors = ['Alexander Lang']
s.version = CouchPotato::VERSION
s.platform = Gem::Platform::RUBY
s.add_dependency 'json', '~> 1.6'
s.add_dependency 'couchrest', '~>2.0.0.rc3'
s.add_dependency 'activemodel', '~> 4.0'
s.add_development_dependency 'rspec', '~>3.2.0'
s.add_development_dependency 'timecop'
s.add_development_dependency 'tzinfo'
s.add_development_dependency 'rake'
s.files = `git ls-files | grep -v "lib/couch_potato/rspec"`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/* | grep -v rspec_matchers`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f) }
s.require_paths = ['lib']
end