2008-08-31 03:49:22 -04:00
|
|
|
require 'rake/clean'
|
2007-11-21 17:56:42 -05:00
|
|
|
|
|
|
|
task :default => :test
|
|
|
|
|
2008-08-31 03:49:22 -04:00
|
|
|
# SPECS ===============================================================
|
|
|
|
|
|
|
|
desc 'Run specs with story style output'
|
|
|
|
task :spec do
|
|
|
|
sh 'specrb --specdox -Ilib:test test/*_test.rb'
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Run specs with unit test style output'
|
|
|
|
task :test => FileList['test/*_test.rb'] do |t|
|
|
|
|
suite = t.prerequisites.map{|f| "-r#{f.chomp('.rb')}"}.join(' ')
|
|
|
|
sh "ruby -Ilib:test #{suite} -e ''", :verbose => false
|
|
|
|
end
|
|
|
|
|
|
|
|
# PACKAGING ============================================================
|
|
|
|
|
2008-08-31 06:29:14 -04:00
|
|
|
# Load the gemspec using the same limitations as github
|
2008-08-31 03:49:22 -04:00
|
|
|
def spec
|
|
|
|
@spec ||=
|
2008-08-31 06:29:14 -04:00
|
|
|
begin
|
|
|
|
require 'rubygems/specification'
|
|
|
|
data = File.read('sinatra.gemspec')
|
|
|
|
spec = nil
|
|
|
|
Thread.new { spec = eval("$SAFE = 3\n#{data}") }.join
|
|
|
|
spec
|
|
|
|
end
|
2008-08-31 03:49:22 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def package(ext='')
|
|
|
|
"dist/sinatra-#{spec.version}" + ext
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Build packages'
|
|
|
|
task :package => %w[.gem .tar.gz].map {|e| package(e)}
|
|
|
|
|
|
|
|
desc 'Build and install as local gem'
|
|
|
|
task :install => package('.gem') do
|
|
|
|
sh "gem install #{package('.gem')}"
|
|
|
|
end
|
|
|
|
|
|
|
|
directory 'dist/'
|
|
|
|
|
|
|
|
file package('.gem') => %w[dist/ sinatra.gemspec] + spec.files do |f|
|
|
|
|
sh "gem build sinatra.gemspec"
|
|
|
|
mv File.basename(f.name), f.name
|
|
|
|
end
|
|
|
|
|
|
|
|
file package('.tar.gz') => %w[dist/] + spec.files do |f|
|
|
|
|
sh "git archive --format=tar HEAD | gzip > #{f.name}"
|
2008-04-11 19:29:36 -04:00
|
|
|
end
|
2008-05-27 09:18:56 -04:00
|
|
|
|
|
|
|
# Hanna RDoc =========================================================
|
|
|
|
#
|
|
|
|
# Building docs requires the hanna gem:
|
|
|
|
# gem install mislav-hanna --source=http://gems.github.com
|
|
|
|
|
|
|
|
desc 'Generate Hanna RDoc under doc/api'
|
|
|
|
task :doc => ['doc/api/index.html']
|
|
|
|
|
|
|
|
file 'doc/api/index.html' => FileList['lib/**/*.rb','README.rdoc'] do |f|
|
|
|
|
rb_files = f.prerequisites
|
|
|
|
sh((<<-end).gsub(/\s+/, ' '))
|
|
|
|
hanna --charset utf8 \
|
|
|
|
--fmt html \
|
|
|
|
--inline-source \
|
|
|
|
--line-numbers \
|
|
|
|
--main README.rdoc \
|
|
|
|
--op doc/api \
|
|
|
|
--title 'Sinatra API Documentation' \
|
|
|
|
#{rb_files.join(' ')}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
CLEAN.include 'doc/api'
|