-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
28 lines (25 loc) · 957 Bytes
/
Rakefile
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
require 'rake'
require 'rake/testtask'
task :default => [:test]
Rake::TestTask.new(:test) do |t|
t.libs << 'test'
t.pattern = "test/**/*_test.rb"
t.verbose = true
end
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "rocking_chair"
s.summary = %Q{In-memory CouchDB for Couchrest and SimplyStored}
s.email = "jw@innerewut.de"
s.homepage = "http://github.com/jweiss/rocking_chair"
s.description = "In-memory CouchDB for Couchrest and SimplyStored. Works for database and document API, by_attribute views, and for SimplyStored generated views"
s.authors = ["Jonathan Weiss"]
s.files = FileList["[A-Z]*.*", "{lib}/**/*"]
s.add_dependency('simply_stored', '>= 0.1.12')
s.add_dependency('rest-client', '>= 1.6.1')
s.add_dependency('couchrest', '>= 1.0.1')
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end