couchrest_model/Rakefile

59 lines
1.8 KiB
Ruby
Raw Normal View History

2008-06-20 20:54:25 +02:00
require 'rake'
2008-09-12 07:21:16 +02:00
require "rake/rdoctask"
2009-01-13 06:33:12 +01:00
require File.join(File.expand_path(File.dirname(__FILE__)),'lib','couchrest')
begin
require 'spec/rake/spectask'
rescue LoadError
puts <<-EOS
To use rspec for testing you must install rspec gem:
gem install rspec
EOS
exit(0)
end
2010-01-14 00:33:23 +01:00
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "couchrest"
gemspec.summary = "Lean and RESTful interface to CouchDB."
gemspec.description = "CouchRest provides a simple interface on top of CouchDB's RESTful HTTP API, as well as including some utility scripts for managing views and attachments."
gemspec.email = "jchris@apache.org"
gemspec.homepage = "http://github.com/couchrest/couchrest"
gemspec.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos"]
gemspec.extra_rdoc_files = %w( README.md LICENSE THANKS.md )
gemspec.files = %w( LICENSE README.md Rakefile THANKS.md history.txt) + Dir["{examples,lib,spec,utils}/**/*"] - Dir["spec/tmp"]
gemspec.has_rdoc = true
gemspec.add_dependency("rest-client", ">= 0.5")
gemspec.add_dependency("mime-types", ">= 1.15")
gemspec.version = CouchRest::VERSION
gemspec.date = "2008-11-22"
gemspec.require_path = "lib"
2008-09-12 21:45:21 +02:00
end
2010-01-14 00:33:23 +01:00
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end
2008-06-20 20:54:25 +02:00
desc "Run all specs"
Spec::Rake::SpecTask.new('spec') do |t|
2009-08-06 21:57:47 +02:00
t.spec_opts = ["--color"]
2008-10-06 21:27:01 +02:00
t.spec_files = FileList['spec/**/*_spec.rb']
2008-06-20 20:54:25 +02:00
end
desc "Print specdocs"
Spec::Rake::SpecTask.new(:doc) do |t|
2008-09-30 06:08:52 +02:00
t.spec_opts = ["--format", "specdoc"]
2008-06-20 20:54:25 +02:00
t.spec_files = FileList['spec/*_spec.rb']
end
2008-09-12 07:21:16 +02:00
desc "Generate the rdoc"
Rake::RDocTask.new do |rdoc|
files = ["README.rdoc", "LICENSE", "lib/**/*.rb"]
rdoc.rdoc_files.add(files)
rdoc.main = "README.rdoc"
rdoc.title = "CouchRest: Ruby CouchDB, close to the metal"
end
2008-10-15 00:39:40 +02:00
desc "Run the rspec"
2008-06-21 00:06:11 +02:00
task :default => :spec