1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/Rakefile

157 lines
4.4 KiB
Text
Raw Normal View History

require 'rubygems'
2008-08-31 03:49:22 -04:00
require 'rake/clean'
require 'fileutils'
require 'hpricot'
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 ============================================================
# Load the gemspec using the same limitations as github
2008-08-31 03:49:22 -04:00
def spec
@spec ||=
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
# Rubyforge Release / Publish Tasks ==================================
2008-11-02 06:42:25 -05:00
desc 'Publish website to rubyforge'
task 'publish:doc' => 'doc/api/index.html' do
sh 'scp -rp doc/* rubyforge.org:/var/www/gforge-projects/sinatra/'
end
task 'publish:gem' => [package('.gem'), package('.tar.gz')] do |t|
sh <<-end
rubyforge add_release sinatra sinatra #{spec.version} #{package('.gem')} &&
rubyforge add_file sinatra sinatra #{spec.version} #{package('.tar.gz')}
end
end
2008-11-02 06:42:25 -05:00
# Website ============================================================
def rdoc_to_html(file_name)
require 'rdoc/markup/to_html'
rdoc = RDoc::Markup::ToHtml.new
rdoc.convert(File.read(file_name))
end
def haml(locals={})
require 'haml'
template = File.read('doc/template.haml')
haml = Haml::Engine.new(template, :format => :html4, :attr_wrapper => '"')
haml.render(Object.new, locals)
end
directory 'doc/website'
desc 'Build website'
task :website => ['doc/website/book.html', 'doc/website/index.html', :doc]
file 'doc/website/index.html' => 'doc/website' do |file|
File.open(file.name, 'w') do |file|
file << haml(:title => 'Sinatra', :content => rdoc_to_html('README.rdoc'))
end
end
file 'doc/website/book.html' => ['doc/website', :build_book] do |file|
File.open(file.name, 'w') do |file|
book_content = File.read('doc/book/output/sinatra-book.html')
file << haml(:title => 'Sinatra Book', :content => book_content)
end
end
task :build_book do
unless File.directory?('doc/book')
sh 'git clone git://github.com/cschneid/sinatra-book.git doc/book'
end
sh 'cd doc/book && git fetch origin && git rebase origin/master'
sh 'cd doc/book && thor book:build'
end
# Gemspec Helpers ====================================================
file 'sinatra.gemspec' => FileList['{lib,test,images}/**','Rakefile'] do |f|
# read spec file and split out manifest section
spec = File.read(f.name)
parts = spec.split(" # = MANIFEST =\n")
fail 'bad spec' if parts.length != 3
# determine file list from git ls-files
files = `git ls-files`.
split("\n").
sort.
reject{ |file| file =~ /^\./ }.
2008-11-02 06:42:25 -05:00
reject { |file| file =~ /^doc/ }.
map{ |file| " #{file}" }.
join("\n")
# piece file back together and write...
parts[1] = " s.files = %w[\n#{files}\n ]\n"
spec = parts.join(" # = MANIFEST =\n")
File.open(f.name, 'w') { |io| io.write(spec) }
puts "updated #{f.name}"
end
# Hanna RDoc =========================================================
#
# Building docs requires the hanna gem:
# gem install mislav-hanna --source=http://gems.github.com
desc 'Generate Hanna RDoc under doc/api'
2008-11-02 06:42:25 -05:00
task :doc => ['doc/website/api/index.html']
2008-11-02 06:42:25 -05:00
file 'doc/website/api/index.html' => FileList['lib/**/*.rb','README.rdoc'] do |f|
rb_files = f.prerequisites
sh((<<-end).gsub(/\s+/, ' '))
rdoc --charset utf8 \
--fmt html \
--inline-source \
--line-numbers \
--main README.rdoc \
2008-11-02 06:42:25 -05:00
--op doc/website/api \
--title 'Sinatra API Documentation' \
#{rb_files.join(' ')}
end
end
2008-11-02 06:42:25 -05:00
CLEAN.include 'doc/website'