2008-06-20 20:54:25 +02:00
require 'rake'
2008-09-12 07:21:16 +02:00
require " rake/rdoctask "
2008-06-20 20:54:25 +02:00
require 'spec/rake/spectask'
2008-09-12 21:45:21 +02:00
spec = Gem :: Specification . new do | s |
s . name = " couchrest "
2008-09-16 18:12:13 +02:00
s . version = " 0.9.8 "
2008-09-12 21:45:21 +02:00
s . date = " 2008-09-11 "
s . summary = " Lean and RESTful interface to CouchDB. "
s . email = " jchris@grabb.it "
s . homepage = " http://github.com/jchris/couchrest "
s . 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. "
s . has_rdoc = true
s . authors = [ " J. Chris Anderson " ]
s . files = %w( LICENSE README.rdoc Rakefile THANKS ) + Dir [ " {bin,examples,lib,spec,utils}/**/* " ]
s . extra_rdoc_files = %w( README.rdoc LICENSE THANKS )
s . require_path = " lib "
s . bindir = 'bin'
s . executables << 'couchview'
s . executables << 'couchdir'
2008-09-16 17:49:14 +02:00
s . executables << 'couchapp'
2008-09-12 21:56:26 +02:00
s . add_dependency ( " json " , " >= 1.1.2 " )
s . add_dependency ( " rest-client " , " >= 0.5 " )
2008-09-12 21:45:21 +02:00
end
namespace :github do # thanks merb!
desc " Update Github Gemspec "
task :update_gemspec do
skip_fields = %w( new_platform original_platform )
integer_fields = %w( specification_version )
result = " Gem::Specification.new do |s| \n "
spec . instance_variables . each do | ivar |
value = spec . instance_variable_get ( ivar )
name = ivar . split ( " @ " ) . last
next if skip_fields . include? ( name ) || value . nil? || value == " " || ( value . respond_to? ( :empty? ) && value . empty? )
if name == " dependencies "
value . each do | d |
dep , * ver = d . to_s . split ( " " )
2008-09-12 21:56:26 +02:00
result << " s.add_dependency #{ dep . inspect } , [ #{ / \ (([^ \ ,]*) / . match ( ver . join ( " " ) ) [ 1 ] . inspect } ] \n "
2008-09-12 21:45:21 +02:00
end
2008-09-13 00:34:23 +02:00
else
2008-09-12 21:45:21 +02:00
case value
when Array
value = name != " files " ? value . inspect : value . inspect . split ( " , " ) . join ( " , \n " )
2008-09-13 00:34:23 +02:00
when Fixnum
# leave as-is
2008-09-12 21:45:21 +02:00
when String
value = value . to_i if integer_fields . include? ( name )
value = value . inspect
else
value = value . to_s . inspect
end
result << " s. #{ name } = #{ value } \n "
end
end
result << " end "
File . open ( File . join ( File . dirname ( __FILE__ ) , " #{ spec . name } .gemspec " ) , " w " ) { | f | f << result }
end
end
2008-06-20 20:54:25 +02:00
desc " Run all specs "
Spec :: Rake :: SpecTask . new ( 'spec' ) do | t |
t . spec_files = FileList [ 'spec/*_spec.rb' ]
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-09-12 21:45:21 +02:00
desc " Generate the gemspec "
2008-06-21 00:06:11 +02:00
task :default = > :spec