manveru / makura

A Ruby wrapper around the CouchDB REST API.

This URL has Read+Write access

makura / Rakefile
100644 33 lines (26 sloc) 0.869 kb
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
31
32
33
require 'rake'
require 'rake/clean'
require 'rake/gempackagetask'
require 'time'
require 'date'
 
PROJECT_SPECS = Dir['spec/**/*.rb']
PROJECT_MODULE = 'Makura'
PROJECT_VERSION = ENV['VERSION'] || Date.today.strftime("%Y.%m.%d")
 
GEMSPEC = Gem::Specification.new{|s|
  s.name = 'makura'
  s.author = "Michael 'manveru' Fellinger"
  s.summary = "Ruby wrapper around the CouchDB REST API."
  s.email = 'm.fellinger@gmail.com'
  s.homepage = 'http://github.com/manveru/makura'
  s.platform = Gem::Platform::RUBY
  s.version = PROJECT_VERSION
  s.files = `git ls-files`.split("\n").sort
  s.has_rdoc = true
  s.require_path = 'lib'
  s.executables = ['makura']
  s.bindir = "bin"
 
  s.add_runtime_dependency('rest-client', '>= 0.8.1')
}
 
Dir['tasks/*.rake'].each{|f| import(f) }
 
task :default => [:bacon]
 
CLEAN.include('')