haml--haml/Rakefile

404 lines
12 KiB
Ruby
Raw Normal View History

# ----- Benchmarking -----
2008-05-15 22:02:45 +00:00
desc <<END
Benchmark haml against ERb.
2008-05-15 22:02:45 +00:00
TIMES=n sets the number of runs. Defaults to 1000.
END
task :benchmark do
2008-05-06 07:43:43 +00:00
sh "ruby test/benchmark.rb #{ENV['TIMES']}"
end
2008-05-06 07:43:43 +00:00
# ----- Default: Testing ------
if ENV["RUN_CODE_RUN"] == "true"
task :default => :"test:rails_compatibility"
else
task :default => :test
end
2008-05-06 07:43:43 +00:00
require 'rake/testtask'
2008-05-06 07:43:43 +00:00
Rake::TestTask.new do |t|
t.libs << 'lib'
test_files = FileList['test/**/*_test.rb']
test_files.exclude('test/rails/*')
test_files.exclude('test/plugins/*')
test_files.exclude('test/haml/spec/*')
t.test_files = test_files
2008-05-06 07:43:43 +00:00
t.verbose = true
end
Rake::Task[:test].send(:add_comment, <<END)
To run with an alternate version of Rails, make test/rails a symlink to that version.
END
2008-05-06 07:43:43 +00:00
# ----- Packaging -----
2008-05-06 07:43:43 +00:00
require 'rake/gempackagetask'
load 'haml.gemspec'
Rake::GemPackageTask.new(HAML_GEMSPEC) do |pkg|
if Rake.application.top_level_tasks.include?('release')
pkg.need_tar_gz = true
pkg.need_tar_bz2 = true
pkg.need_zip = true
end
end
2008-05-06 07:43:43 +00:00
task :revision_file do
require 'lib/haml'
release = Rake.application.top_level_tasks.include?('release') || File.exist?('EDGE_GEM_VERSION')
if Haml.version[:rev] && !release
2008-05-06 07:43:43 +00:00
File.open('REVISION', 'w') { |f| f.puts Haml.version[:rev] }
elsif release
2008-05-06 07:43:43 +00:00
File.open('REVISION', 'w') { |f| f.puts "(release)" }
else
File.open('REVISION', 'w') { |f| f.puts "(unknown)" }
end
2008-05-06 07:43:43 +00:00
end
Rake::Task[:package].prerequisites.insert(0, :revision_file)
2008-05-06 07:43:43 +00:00
# We also need to get rid of this file after packaging.
at_exit { File.delete('REVISION') rescue nil }
desc "Install Haml as a gem."
2008-05-06 07:43:43 +00:00
task :install => [:package] do
sudo = RUBY_PLATFORM =~ /win32/ ? '' : 'sudo'
gem = RUBY_PLATFORM =~ /java/ ? 'jgem' : 'gem'
sh %{#{sudo} #{gem} install --no-ri pkg/haml-#{File.read('VERSION').strip}}
2008-05-06 07:43:43 +00:00
end
desc "Release a new Haml package to Rubyforge."
task :release => [:check_release, :release_elpa, :package] do
2009-06-30 04:46:59 +00:00
name = File.read("VERSION_NAME").strip
version = File.read("VERSION").strip
2008-05-06 07:43:43 +00:00
sh %{rubyforge login}
sh %{rubyforge add_release haml haml "#{name} (v#{version})" pkg/haml-#{version}.gem}
sh %{rubyforge add_file haml haml "#{name} (v#{version})" pkg/haml-#{version}.tar.gz}
sh %{rubyforge add_file haml haml "#{name} (v#{version})" pkg/haml-#{version}.tar.bz2}
sh %{rubyforge add_file haml haml "#{name} (v#{version})" pkg/haml-#{version}.zip}
sh %{gem push pkg/haml-#{version}.gem}
2008-05-06 07:43:43 +00:00
end
# Releases haml-mode.el and sass-mode.el to ELPA.
task :release_elpa do
require 'tlsmail'
require 'time'
version = File.read("VERSION").strip
haml_unchanged = mode_unchanged?(:haml, version)
sass_unchanged = mode_unchanged?(:sass, version)
next if haml_unchanged && sass_unchanged
raise "haml-mode.el and sass-mode.el are out of sync." if haml_unchanged ^ sass_unchanged
2009-10-05 00:43:46 +00:00
if sass_unchanged && File.read("extra/sass-mode.el").
include?(";; Package-Requires: ((haml-mode #{sass_unchanged.inspect}))")
raise "sass-mode.el doesn't require the same version of haml-mode."
end
rev = File.read('.git/HEAD').strip
if rev =~ /^ref: (.*)$/
rev = File.read(".git/#{$1}").strip
end
2009-09-21 21:45:04 +00:00
from = `git config user.email`.strip
raise "Don't know how to send emails except via Gmail" unless from =~ /@gmail.com$/
to = "elpa@tromey.com"
Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)
Net::SMTP.start('smtp.gmail.com', 587, 'gmail.com', from, read_password("GMail Password"), :login) do |smtp|
smtp.send_message(<<CONTENT, from, to)
From: Nathan Weizenbaum <#{from}>
To: #{to}
Subject: Submitting haml-mode and sass-mode #{version}
Date: #{Time.now.rfc2822}
haml-mode and sass-mode #{version} are packaged and ready to be included in ELPA.
They can be downloaded from:
http://github.com/nex3/haml/raw/#{rev}/extra/haml-mode.el
http://github.com/nex3/haml/raw/#{rev}/extra/sass-mode.el
CONTENT
end
end
# Ensures that the version have been updated for a new release.
task :check_release do
version = File.read("VERSION").strip
raise "There have been changes since current version (#{version})" if changed_since?(version)
raise "VERSION_NAME must not be 'Bleeding Edge'" if File.read("VERSION_NAME") == "Bleeding Edge"
end
# Reads a password from the command line.
#
# @param name [String] The prompt to use to read the password
def read_password(prompt)
require 'readline'
system "stty -echo"
Readline.readline("#{prompt}: ").strip
ensure
system "stty echo"
puts
end
# Returns whether or not the repository, or specific files,
# has/have changed since a given revision.
#
# @param rev [String] The revision to check against
# @param files [Array<String>] The files to check.
# If this is empty, checks the entire repository
def changed_since?(rev, *files)
IO.popen("git diff --exit-code #{rev} #{files.join(' ')}") {}
return !$?.success?
end
# Returns whether or not the given Emacs mode file (haml or sass)
# has changed since the given version.
#
# @param mode [String, Symbol] The name of the mode
# @param version [String] The version number
# @return [String, nil] The version number if the version has changed
def mode_unchanged?(mode, version)
mode_version = File.read("extra/#{mode}-mode.el").scan(/^;; Version: (.*)$/).first.first
return false if mode_version == version
return mode_version unless changed_since?(mode_version, "extra/#{mode}-mode.el")
raise "#{mode}-mode.el version is #{version.inspect}, but it has changed as of #{version.inspect}"
return false
end
task :release_edge do
ensure_git_cleanup do
puts "#{'=' * 50} Running rake release_edge"
2009-06-25 07:51:23 +00:00
sh %{git checkout edge-gem}
sh %{git reset --hard origin/edge-gem}
sh %{git merge origin/master}
# Get the current master branch version
version = File.read('VERSION').strip.split('.').map {|n| n.to_i}
unless version[1] % 2 == 1 && version[2] == 0
raise "#{version.join('.')} is not a development version"
end
# Bump the edge gem version
edge_version = File.read('EDGE_GEM_VERSION').strip.split('.').map {|n| n.to_i}
if edge_version[0..1] != version[0..1]
# A new master branch version was released, reset the edge gem version
edge_version[0..1] = version[0..1]
edge_version[2] = 0
else
# Just bump the teeny version
edge_version[2] += 1
end
edge_version = edge_version.join('.')
File.open('EDGE_GEM_VERSION', 'w') {|f| f.puts(edge_version)}
sh %{git commit -m "Bump edge gem version to #{edge_version}." EDGE_GEM_VERSION}
sh %{git push origin edge-gem}
# Package the edge gem with the proper version
File.open('VERSION', 'w') {|f| f.puts(edge_version)}
sh %{rake package}
sh %{git checkout VERSION}
sh %{rubyforge login}
sh %{rubyforge add_release haml haml-edge "Bleeding Edge (v#{edge_version})" pkg/haml-edge-#{edge_version}.gem}
2009-11-28 22:56:07 +00:00
sh %{gem push pkg/haml-edge-#{edge_version}.gem}
end
end
task :watch_for_update do
sh %{ruby extra/update_watch.rb}
end
2008-05-06 07:43:43 +00:00
# ----- Documentation -----
2009-03-30 08:27:08 +00:00
task :rdoc do
puts '=' * 100, <<END, '=' * 100
Haml uses the YARD documentation system (http://github.com/lsegal/yard).
Install the yard gem and then run "rake doc".
END
2008-05-06 07:43:43 +00:00
end
2009-03-30 08:27:08 +00:00
begin
require 'yard'
2009-03-30 08:27:08 +00:00
namespace :yard do
task :sass do
require File.dirname(__FILE__) + '/lib/sass'
Dir[File.dirname(__FILE__) + "/yard/default/**/*.sass"].each do |sass|
File.open(sass.gsub(/sass$/, 'css'), 'w') do |f|
f.write(Sass::Engine.new(File.read(sass)).render)
end
end
end
end
2009-03-30 08:27:08 +00:00
YARD::Rake::YardocTask.new do |t|
t.files = FileList.new('lib/**/*.rb') do |list|
list.exclude('lib/haml/template/*.rb')
list.exclude('lib/haml/helpers/action_view_mods.rb')
end.to_a
t.options << '--use-cache' if Rake.application.top_level_tasks.include?('redoc')
t.options += FileList.new('yard/*.rb').to_a.map {|f| ['-e', f]}.flatten
2009-06-18 21:32:58 +00:00
files = FileList.new('doc-src/*').to_a.sort_by {|s| s.size} + %w[MIT-LICENSE VERSION]
t.options << '--files' << files.join(',')
t.options << '--template-path' << File.dirname(__FILE__) + '/yard'
2009-03-30 08:27:08 +00:00
end
Rake::Task['yard'].prerequisites.insert(0, 'yard:sass')
2009-11-23 21:44:31 +00:00
Rake::Task['yard'].instance_variable_set('@comment', nil)
2009-03-30 08:27:08 +00:00
2009-06-07 20:14:05 +00:00
desc "Generate Documentation"
2009-11-23 21:44:31 +00:00
task :doc => :yard
task :redoc => :yard
2009-03-30 08:27:08 +00:00
rescue LoadError
2009-06-07 20:14:05 +00:00
desc "Generate Documentation"
2009-03-30 08:27:08 +00:00
task :doc => :rdoc
task :yard => :rdoc
2008-05-06 07:43:43 +00:00
end
task :pages do
ensure_git_cleanup do
puts "#{'=' * 50} Running rake pages PROJ=#{ENV["PROJ"].inspect}"
raise 'No ENV["PROJ"]!' unless proj = ENV["PROJ"]
sh %{git checkout #{proj}-pages}
sh %{git reset --hard origin/#{proj}-pages}
Dir.chdir("/var/www/#{proj}-pages") do
sh %{git fetch origin}
sh %{git checkout stable}
sh %{git reset --hard origin/stable}
sh %{git checkout #{proj}-pages}
sh %{git reset --hard origin/#{proj}-pages}
sh %{rake build --trace}
sh %{mkdir -p tmp}
sh %{touch tmp/restart.txt}
end
end
end
2008-05-06 07:43:43 +00:00
# ----- Coverage -----
2008-05-15 22:02:45 +00:00
begin
require 'rcov/rcovtask'
2008-05-06 07:43:43 +00:00
Rcov::RcovTask.new do |t|
t.test_files = FileList['test/**/*_test.rb']
t.rcov_opts << '-x' << '"^\/"'
if ENV['NON_NATIVE']
t.rcov_opts << "--no-rcovrt"
end
2008-05-06 07:43:43 +00:00
t.verbose = true
end
2008-05-15 22:02:45 +00:00
rescue LoadError; end
2008-05-06 07:43:43 +00:00
# ----- Profiling -----
2008-05-15 22:43:32 +00:00
begin
require 'ruby-prof'
desc <<END
2008-05-15 22:02:45 +00:00
Run a profile of haml.
2008-05-15 22:43:32 +00:00
ENGINE=str sets the engine to be profiled. Defaults to Haml.
TIMES=n sets the number of runs. Defaults to 1000.
FILE=str sets the file to profile.
Defaults to 'standard' for Haml and 'complex' for Sass.
OUTPUT=str sets the ruby-prof output format.
Can be Flat, CallInfo, or Graph. Defaults to Flat. Defaults to Flat.
2008-05-15 22:02:45 +00:00
END
2008-05-15 22:43:32 +00:00
task :profile do
engine = (ENV['ENGINE'] || 'haml').downcase
times = (ENV['TIMES'] || '1000').to_i
file = ENV['FILE']
if engine == 'sass'
require 'lib/sass'
file = File.read("#{File.dirname(__FILE__)}/test/sass/templates/#{file || 'complex'}.sass")
result = RubyProf.profile { times.times { Sass::Engine.new(file).render } }
else
require 'lib/haml'
file = File.read("#{File.dirname(__FILE__)}/test/haml/templates/#{file || 'standard'}.haml")
obj = Object.new
Haml::Engine.new(file).def_method(obj, :render)
result = RubyProf.profile { times.times { obj.render } }
end
2008-05-15 22:43:32 +00:00
RubyProf.const_get("#{(ENV['OUTPUT'] || 'Flat').capitalize}Printer").new(result).print
end
rescue LoadError; end
# ----- Testing Multiple Rails Versions -----
rails_versions = [
2009-11-09 00:45:22 +00:00
"v2.3.4",
"v2.2.2",
"v2.1.2",
]
rails_versions << "v2.0.5" if RUBY_VERSION =~ /^1\.8/
namespace :test do
desc "Test all supported versions of rails. This takes a while."
task :rails_compatibility do
`rm -rf test/rails`
puts "Checking out rails. Please wait."
`git clone git://github.com/rails/rails.git test/rails` rescue nil
begin
rails_versions.each do |version|
Dir.chdir "test/rails" do
`git checkout #{version}`
end
puts "Testing Rails #{version}"
Rake::Task['test'].reenable
Rake::Task['test'].execute
end
ensure
`rm -rf test/rails`
end
end
end
# ----- Handling Updates -----
def ensure_git_cleanup
yield
ensure
sh %{git reset --hard HEAD}
sh %{git clean -xdf}
sh %{git checkout master}
end
task :handle_update do
2009-07-06 09:33:22 +00:00
unless ENV["REF"] =~ %r{^refs/heads/(master|stable|(?:haml|sass)-pages)$}
2009-07-04 23:26:25 +00:00
puts "#{'=' * 20} Ignoring rake handle_update REF=#{ENV["REF"].inspect}"
next
end
branch = $1
2009-06-25 07:51:23 +00:00
puts
puts
puts '=' * 150
2009-06-25 07:56:37 +00:00
puts "Running rake handle_update REF=#{ENV["REF"].inspect}"
2009-06-25 07:51:23 +00:00
sh %{git fetch origin}
sh %{git checkout stable}
sh %{git reset --hard origin/stable}
sh %{git checkout master}
sh %{git reset --hard origin/master}
if branch == "master"
sh %{rake release_edge --trace}
2009-07-06 09:33:22 +00:00
elsif branch == "stable"
sh %{rake pages --trace PROJ=haml}
sh %{rake pages --trace PROJ=sass}
elsif branch =~ /^(haml|sass)-pages$/
sh %{rake pages --trace PROJ=#{$1}}
end
2009-07-04 23:26:25 +00:00
puts 'Done running handle_update'
puts '=' * 150
end