vendor/sinatra/Rakefile in relevance-castronaut-0.5.4 vs vendor/sinatra/Rakefile in relevance-castronaut-0.6.0
- old
+ new
@@ -1,22 +1,30 @@
+require 'rubygems'
require 'rake/clean'
+require 'fileutils'
task :default => :test
# SPECS ===============================================================
desc 'Run specs with story style output'
task :spec do
- sh 'specrb --specdox -Ilib:test test/*_test.rb'
+ pattern = ENV['TEST'] || '.*'
+ sh "specrb --testcase '#{pattern}' --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
+task :test do |t|
+ sh "specrb -Ilib:test test/*_test.rb"
end
+desc 'Run compatibility specs'
+task :compat do |t|
+ pattern = ENV['TEST'] || '.*'
+ sh "specrb --testcase '#{pattern}' -Ilib:test compat/*_test.rb"
+end
+
# PACKAGING ============================================================
# Load the gemspec using the same limitations as github
def spec
@spec ||=
@@ -47,55 +55,41 @@
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}"
+ sh <<-SH
+ git archive \
+ --prefix=sinatra-#{source_version}/ \
+ --format=tar \
+ HEAD | gzip > #{f.name}
+ SH
end
# Rubyforge Release / Publish Tasks ==================================
-desc 'Publish API docs to rubyforge'
+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
+desc 'Publish gem and tarball to rubyforge'
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
-# 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 =~ /^\./ }.
- 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:
+# Website ============================================================
+# Building docs requires HAML and the hanna gem:
# gem install mislav-hanna --source=http://gems.github.com
+task 'doc' => ['doc:api','doc:site']
+
desc 'Generate Hanna RDoc under doc/api'
-task :doc => ['doc/api/index.html']
+task 'doc:api' => ['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 \
@@ -107,5 +101,86 @@
--title 'Sinatra API Documentation' \
#{rb_files.join(' ')}
end
end
CLEAN.include 'doc/api'
+
+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
+
+desc 'Build website HTML and stuff'
+task 'doc:site' => ['doc/index.html', 'doc/book.html']
+
+file 'doc/index.html' => %w[README.rdoc doc/template.haml] do |file|
+ File.open(file.name, 'w') do |file|
+ file << haml(:title => 'Sinatra', :content => rdoc_to_html('README.rdoc'))
+ end
+end
+CLEAN.include 'doc/index.html'
+
+file 'doc/book.html' => ['book/output/sinatra-book.html'] do |file|
+ File.open(file.name, 'w') do |file|
+ book_content = File.read('book/output/sinatra-book.html')
+ file << haml(:title => 'Sinatra Book', :content => book_content)
+ end
+end
+CLEAN.include 'doc/book.html'
+
+file 'book/output/sinatra-book.html' => FileList['book/**'] do |f|
+ unless File.directory?('book')
+ sh 'git clone git://github.com/cschneid/sinatra-book.git book'
+ end
+ sh((<<-SH).strip.gsub(/\s+/, ' '))
+ cd book &&
+ git fetch origin &&
+ git rebase origin/master &&
+ thor book:build
+ SH
+end
+CLEAN.include 'book/output/sinatra-book.html'
+
+desc 'Build the Sinatra book'
+task 'doc:book' => ['book/output/sinatra-book.html']
+
+# Gemspec Helpers ====================================================
+
+def source_version
+ line = File.read('lib/sinatra/base.rb')[/^\s*VERSION = .*/]
+ line.match(/.*VERSION = '(.*)'/)[1]
+end
+
+project_files =
+ FileList[
+ '{lib,test,compat,images}/**',
+ 'Rakefile', 'CHANGES', 'README.rdoc'
+ ]
+file 'sinatra.gemspec' => project_files do |f|
+ # read spec file and split out manifest section
+ spec = File.read(f.name)
+ head, manifest, tail = spec.split(" # = MANIFEST =\n")
+ # replace version and date
+ head.sub!(/\.version = '.*'/, ".version = '#{source_version}'")
+ head.sub!(/\.date = '.*'/, ".date = '#{Date.today.to_s}'")
+ # determine file list from git ls-files
+ files = `git ls-files`.
+ split("\n").
+ sort.
+ reject{ |file| file =~ /^\./ }.
+ reject { |file| file =~ /^doc/ }.
+ map{ |file| " #{file}" }.
+ join("\n")
+ # piece file back together and write...
+ manifest = " s.files = %w[\n#{files}\n ]\n"
+ spec = [head,manifest,tail].join(" # = MANIFEST =\n")
+ File.open(f.name, 'w') { |io| io.write(spec) }
+ puts "updated #{f.name}"
+end