haml--haml/Rakefile

410 lines
11 KiB
Ruby
Raw Normal View History

# ----- Utility Functions -----
def scope(path)
File.join(File.dirname(__FILE__), path)
end
# ----- 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[scope('test/**/*_test.rb')]
test_files.exclude(scope('test/rails/*'))
test_files.exclude(scope('test/plugins/*'))
test_files.exclude(scope('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 -----
# Don't use Rake::GemPackageTast because we want prerequisites to run
# before we load the gemspec.
desc "Build all the packages."
task :package => [:revision_file, :submodules, :permissions] do
version = get_version
File.open(scope('VERSION'), 'w') {|f| f.puts(version)}
load scope('haml.gemspec')
Gem::Builder.new(HAML_GEMSPEC).build
sh %{git checkout VERSION}
pkg = "#{HAML_GEMSPEC.name}-#{HAML_GEMSPEC.version}"
mkdir_p "pkg"
verbose(true) {mv "#{pkg}.gem", "pkg/#{pkg}.gem"}
sh %{rm -f pkg/#{pkg}.tar.gz}
verbose(false) {HAML_GEMSPEC.files.each {|f| sh %{tar rf pkg/#{pkg}.tar #{f}}}}
sh %{gzip pkg/#{pkg}.tar}
end
task :permissions do
sh %{chmod -R a+rx bin}
sh %{chmod -R a+r .}
require 'shellwords'
Dir.glob('test/**/*_test.rb') do |file|
next if file =~ %r{^test/haml-spec/}
sh %{chmod a+rx #{file}}
end
end
2008-05-06 07:43:43 +00:00
task :revision_file do
2011-11-28 21:19:38 +00:00
require scope('lib/haml')
release = Rake.application.top_level_tasks.include?('release') || File.exist?(scope('EDGE_GEM_VERSION'))
if Haml.version[:rev] && !release
File.open(scope('REVISION'), 'w') { |f| f.puts Haml.version[:rev] }
elsif release
File.open(scope('REVISION'), 'w') { |f| f.puts "(release)" }
2008-05-06 07:43:43 +00:00
else
File.open(scope('REVISION'), 'w') { |f| f.puts "(unknown)" }
end
2008-05-06 07:43:43 +00:00
end
2008-05-06 07:43:43 +00:00
# We also need to get rid of this file after packaging.
at_exit { File.delete(scope('REVISION')) rescue nil }
desc "Install Haml as a gem. Use SUDO=1 to install with sudo."
2008-05-06 07:43:43 +00:00
task :install => [:package] do
gem = RUBY_PLATFORM =~ /java/ ? 'jgem' : 'gem'
sh %{#{'sudo ' if ENV["SUDO"]}#{gem} install --no-ri pkg/haml-#{get_version}}
2008-05-06 07:43:43 +00:00
end
desc "Release a new Haml package to Rubyforge."
2010-08-22 23:04:02 +00:00
task :release => [:check_release, :package] do
name = File.read(scope("VERSION_NAME")).strip
version = File.read(scope("VERSION")).strip
2008-05-06 07:43:43 +00:00
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 %{gem push pkg/haml-#{version}.gem}
2008-05-06 07:43:43 +00:00
end
# Ensures that the VERSION file has been updated for a new release.
task :check_release do
version = File.read(scope("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(scope("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
task :submodules do
if File.exist?(File.dirname(__FILE__) + "/.git")
sh %{git submodule sync}
2010-10-04 00:04:11 +00:00
sh %{git submodule update --init --recursive}
end
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 master}
sh %{git reset --hard origin/master}
sh %{rake package}
2010-12-07 16:55:44 +00:00
version = get_version
sh %{rubyforge add_release haml haml "Bleeding Edge (v#{version})" pkg/haml-#{version}.gem}
sh %{gem push pkg/haml-#{version}.gem}
end
end
# Get the version string. If this is being installed from Git,
# this includes the proper prerelease version.
def get_version
written_version = File.read(scope('VERSION').strip)
return written_version unless File.exist?(scope('.git'))
# Get the current master branch version
version = written_version.split('.')
version.map! {|n| n =~ /^[0-9]+$/ ? n.to_i : n}
return written_version unless version.size == 5 && version[3] == "alpha" # prerelease
return written_version if (commit_count = `git log --pretty=oneline --first-parent stable.. | wc -l`).empty?
version[4] = commit_count.strip
version.join('.')
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 :doc do
desc "List all undocumented methods and classes."
task :undocumented do
opts = ENV["YARD_OPTS"] || ""
ENV["YARD_OPTS"] = opts.dup + <<OPTS
--list --query "
object.docstring.blank? &&
!(object.type == :method && object.is_alias?)"
OPTS
Rake::Task['yard'].execute
end
end
2009-03-30 08:27:08 +00:00
YARD::Rake::YardocTask.new do |t|
t.files = FileList.new(scope('lib/**/*.rb')) do |list|
list.exclude('lib/haml/template/patch.rb')
list.exclude('lib/haml/template/plugin.rb')
2010-04-20 09:20:01 +00:00
list.exclude('lib/haml/railtie.rb')
list.exclude('lib/haml/helpers/action_view_mods.rb')
list.exclude('lib/haml/helpers/xss_mods.rb')
end.to_a
2010-01-18 00:23:29 +00:00
t.options << '--incremental' if Rake.application.top_level_tasks.include?('redoc')
t.options += FileList.new(scope('yard/*.rb')).to_a.map {|f| ['-e', f]}.flatten
files = FileList.new(scope('doc-src/*')).to_a.sort_by {|s| s.size} + %w[MIT-LICENSE VERSION]
t.options << '--files' << files.join(',')
t.options << '--template-path' << scope('yard')
t.options << '--title' << ENV["YARD_TITLE"] if ENV["YARD_TITLE"]
t.before = lambda do
if ENV["YARD_OPTS"]
require 'shellwords'
t.options.concat(Shellwords.shellwords(ENV["YARD_OPTS"]))
end
end
2009-03-30 08:27:08 +00:00
end
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
2010-08-22 23:04:02 +00:00
puts "#{'=' * 50} Running rake pages"
ensure_git_cleanup do
2010-08-22 23:04:02 +00:00
sh %{git checkout haml-pages}
sh %{git reset --hard origin/haml-pages}
2010-08-22 23:04:02 +00:00
Dir.chdir("/var/www/haml-pages") do
sh %{git fetch origin}
sh %{git checkout stable}
sh %{git reset --hard origin/stable}
2010-08-22 23:04:02 +00:00
sh %{git checkout haml-pages}
sh %{git reset --hard origin/haml-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[scope('test/**/*_test.rb')]
2008-05-06 07:43:43 +00:00
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
TIMES=n sets the number of runs. Defaults to 1000.
2010-08-22 23:04:02 +00:00
FILE=str sets the file to profile. Defaults to 'standard'
2008-05-15 22:43:32 +00:00
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
times = (ENV['TIMES'] || '1000').to_i
file = ENV['FILE']
2010-08-22 23:04:02 +00:00
require 'lib/haml'
2008-05-15 22:43:32 +00:00
2010-08-22 23:04:02 +00:00
file = File.read(scope("test/haml/templates/#{file || 'standard'}.haml"))
obj = Object.new
Haml::Engine.new(file).def_method(obj, :render)
result = RubyProf.profile { times.times { obj.render } }
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 = [
2011-09-20 20:16:50 +00:00
"v3.1.0",
"v3.0.10",
"v2.3.14",
2010-03-02 23:36:01 +00:00
"v2.2.3",
"v2.1.2",
]
rails_versions << "v2.0.5" if RUBY_VERSION =~ /^1\.8/
def test_rails_version(version)
Dir.chdir "test/rails" do
sh %{git checkout #{version}}
end
puts "Testing Rails #{version}"
Rake::Task['test'].reenable
Rake::Task['test'].execute
end
def gemfiles
@gemfiles ||=
begin
raise 'Must install bundler to run Rails compatibility tests' if `which bundle`.empty?
Dir[File.dirname(__FILE__) + '/test/gemfiles/Gemfile.*'].
reject {|f| f =~ /\.lock$/}.
reject {|f| RUBY_VERSION !~ /^1\.8/ && f =~ /Gemfile\.rails-2\.[0-2]/}
end
end
def with_each_gemfile
old_env = ENV['BUNDLE_GEMFILE']
gemfiles.each do |gemfile|
puts "Using gemfile: #{gemfile}"
ENV['BUNDLE_GEMFILE'] = gemfile
yield
end
ensure
ENV['BUNDLE_GEMFILE'] = old_env
end
namespace :test do
namespace :bundles do
desc "Install all dependencies necessary to test Haml."
task :install do
2012-04-26 20:44:48 +00:00
with_each_gemfile {sh "bundle"}
end
desc "Update all dependencies for testing Haml."
task :update do
with_each_gemfile {sh "bundle update"}
end
end
desc "Test all supported versions of rails. This takes a while."
task :rails_compatibility => 'test:bundles:install' do
`rm -rf test/rails`
`rm -rf test/plugins`
with_each_gemfile {sh "bundle exec rake test"}
end
end
# ----- Handling Updates -----
def email_on_error
yield
rescue Exception => e
IO.popen("sendmail nex342@gmail.com", "w") do |sm|
sm << "From: nex3@nex-3.com\n" <<
"To: nex342@gmail.com\n" <<
"Subject: Exception when running rake #{Rake.application.top_level_tasks.join(', ')}\n" <<
e.message << "\n\n" <<
e.backtrace.join("\n")
end
ensure
raise e if e
end
def ensure_git_cleanup
email_on_error {yield}
ensure
sh %{git reset --hard HEAD}
sh %{git clean -xdf}
sh %{git checkout master}
end
task :handle_update do
email_on_error do
2010-08-22 23:04:02 +00:00
unless ENV["REF"] =~ %r{^refs/heads/(master|stable|haml-pages)$}
puts "#{'=' * 20} Ignoring rake handle_update REF=#{ENV["REF"].inspect}"
next
end
branch = $1
puts
puts
puts '=' * 150
puts "Running rake handle_update REF=#{ENV["REF"].inspect}"
sh %{git fetch origin}
sh %{git checkout stable}
sh %{git reset --hard origin/stable}
sh %{git checkout master}
sh %{git reset --hard origin/master}
2010-08-22 23:04:02 +00:00
case branch
when "master"
sh %{rake release_edge --trace}
2010-08-22 23:04:02 +00:00
when "stable", "haml-pages"
sh %{rake pages --trace}
end
2009-06-25 07:51:23 +00:00
puts 'Done running handle_update'
puts '=' * 150
end
end