2006-10-14 19:50:07 -04:00
|
|
|
require 'rubygems'
|
2006-06-30 11:14:44 -04:00
|
|
|
require 'rake'
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Benchmarking -----
|
|
|
|
|
2008-05-15 18:02:45 -04:00
|
|
|
desc <<END
|
2006-12-16 18:13:01 -05:00
|
|
|
Benchmark haml against ERb.
|
2008-05-15 18:02:45 -04:00
|
|
|
TIMES=n sets the number of runs. Defaults to 1000.
|
2006-12-15 23:21:34 -05:00
|
|
|
END
|
|
|
|
task :benchmark do
|
2008-05-06 03:43:43 -04:00
|
|
|
sh "ruby test/benchmark.rb #{ENV['TIMES']}"
|
2006-11-28 21:16:51 -05:00
|
|
|
end
|
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# ----- Default: Testing ------
|
2006-08-05 23:18:54 -04:00
|
|
|
|
2009-02-10 04:39:18 -05:00
|
|
|
if ENV["RUN_CODE_RUN"] == "true"
|
|
|
|
task :default => :"test:rails_compatibility"
|
|
|
|
else
|
|
|
|
task :default => :test
|
|
|
|
end
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
require 'rake/testtask'
|
2006-06-30 11:14:44 -04:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
Rake::TestTask.new do |t|
|
|
|
|
t.libs << 'lib'
|
2008-06-19 01:26:21 -04:00
|
|
|
test_files = FileList['test/**/*_test.rb']
|
|
|
|
test_files.exclude('test/rails/*')
|
|
|
|
t.test_files = test_files
|
2008-05-06 03:43:43 -04:00
|
|
|
t.verbose = true
|
|
|
|
end
|
|
|
|
Rake::Task[:test].send(:add_comment, <<END)
|
2008-03-05 23:19:52 -05:00
|
|
|
To run with an alternate version of Rails, make test/rails a symlink to that version.
|
|
|
|
END
|
2006-06-30 11:14:44 -04:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# ----- Packaging -----
|
2006-12-12 01:34:11 -05:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
require 'rake/gempackagetask'
|
|
|
|
load 'haml.gemspec'
|
2008-04-11 01:54:40 -04:00
|
|
|
|
2008-05-06 04:00:52 -04:00
|
|
|
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
|
2006-09-12 10:50:13 -04:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
task :revision_file do
|
2008-05-15 20:48:02 -04:00
|
|
|
require 'lib/haml'
|
|
|
|
|
2009-04-29 19:52:57 -04:00
|
|
|
release = Rake.application.top_level_tasks.include?('release') || File.exist?('EDGE_GEM_VERSION')
|
|
|
|
if Haml.version[:rev] && !release
|
2008-05-06 03:43:43 -04:00
|
|
|
File.open('REVISION', 'w') { |f| f.puts Haml.version[:rev] }
|
2009-04-29 19:52:57 -04:00
|
|
|
elsif release
|
2008-05-06 03:43:43 -04:00
|
|
|
File.open('REVISION', 'w') { |f| f.puts "(release)" }
|
|
|
|
else
|
|
|
|
File.open('REVISION', 'w') { |f| f.puts "(unknown)" }
|
2008-04-11 01:54:40 -04:00
|
|
|
end
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
|
|
|
Rake::Task[:package].prerequisites.insert(0, :revision_file)
|
2008-04-11 01:54:40 -04:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# We also need to get rid of this file after packaging.
|
2008-05-28 23:03:34 -04:00
|
|
|
at_exit { File.delete('REVISION') rescue nil }
|
2008-04-11 01:54:40 -04:00
|
|
|
|
2008-06-22 00:05:22 -04:00
|
|
|
desc "Install Haml as a gem."
|
2008-05-06 03:43:43 -04:00
|
|
|
task :install => [:package] do
|
|
|
|
sudo = RUBY_PLATFORM =~ /win32/ ? '' : 'sudo'
|
2009-02-24 22:55:06 -05:00
|
|
|
gem = RUBY_PLATFORM =~ /java/ ? 'jgem' : 'gem'
|
|
|
|
sh %{#{sudo} #{gem} install --no-ri pkg/haml-#{File.read('VERSION').strip}}
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
2007-11-17 04:19:17 -05:00
|
|
|
|
2008-06-22 00:05:22 -04:00
|
|
|
desc "Release a new Haml package to Rubyforge. Requires the NAME and VERSION flags."
|
2008-05-06 03:43:43 -04:00
|
|
|
task :release => [:package] do
|
|
|
|
name, version = ENV['NAME'], ENV['VERSION']
|
|
|
|
raise "Must supply NAME and VERSION for release task." unless name && version
|
|
|
|
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}
|
|
|
|
end
|
2008-01-06 20:59:55 -05:00
|
|
|
|
2009-04-29 19:52:57 -04:00
|
|
|
task :release_edge do
|
|
|
|
sh %{git checkout edge-gem}
|
2009-06-18 01:14:14 -04:00
|
|
|
sh %{git reset --hard origin/edge-gem}
|
2009-04-29 19:52:57 -04:00
|
|
|
sh %{git merge origin/master}
|
|
|
|
|
|
|
|
# Get the current master branch version
|
|
|
|
version = File.read('VERSION').strip.split('.').map {|n| n.to_i}
|
2009-04-29 22:23:08 -04:00
|
|
|
unless version[1] % 2 == 1 && version[2] == 0
|
|
|
|
raise "#{version.join('.')} is not a development version"
|
|
|
|
end
|
2009-04-29 19:52:57 -04:00
|
|
|
|
|
|
|
# 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)}
|
2009-05-26 17:19:12 -04:00
|
|
|
sh %{git commit -m "Bump edge gem version to #{edge_version}." EDGE_GEM_VERSION}
|
2009-04-29 19:52:57 -04:00
|
|
|
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}
|
|
|
|
end
|
|
|
|
|
2009-06-18 00:23:35 -04:00
|
|
|
task :watch_for_update do
|
|
|
|
sh %{ruby extra/update_watch.rb}
|
2009-04-29 22:27:25 -04:00
|
|
|
end
|
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# ----- Documentation -----
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2009-03-30 04:27:08 -04: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 03:43:43 -04:00
|
|
|
end
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2009-03-30 04:27:08 -04:00
|
|
|
begin
|
2009-06-07 16:05:02 -04:00
|
|
|
require 'yard'
|
2009-03-30 04:27:08 -04:00
|
|
|
|
|
|
|
YARD::Rake::YardocTask.new do |t|
|
2009-05-31 23:16:09 -04:00
|
|
|
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
|
2009-06-18 17:45:39 -04:00
|
|
|
t.options << '--use-cache' if Rake.application.top_level_tasks.include?('redoc')
|
2009-04-26 04:32:57 -04:00
|
|
|
t.options += FileList.new('yard/*.rb').to_a.map {|f| ['-e', f]}.flatten
|
2009-06-18 17:32:58 -04:00
|
|
|
files = FileList.new('doc-src/*').to_a.sort_by {|s| s.size} + %w[MIT-LICENSE VERSION]
|
2009-06-18 16:16:16 -04:00
|
|
|
t.options << '--files' << files.join(',')
|
2009-03-30 04:27:08 -04:00
|
|
|
end
|
2009-06-07 16:14:05 -04:00
|
|
|
Rake::Task['yardoc'].instance_variable_set('@comment', nil)
|
2009-03-30 04:27:08 -04:00
|
|
|
|
2009-06-07 16:14:05 -04:00
|
|
|
desc "Generate Documentation"
|
2009-03-30 04:27:08 -04:00
|
|
|
task :doc => :yardoc
|
2009-06-18 17:45:39 -04:00
|
|
|
task :redoc => :yardoc
|
2009-03-30 04:27:08 -04:00
|
|
|
rescue LoadError
|
2009-06-07 16:14:05 -04:00
|
|
|
desc "Generate Documentation"
|
2009-03-30 04:27:08 -04:00
|
|
|
task :doc => :rdoc
|
|
|
|
task :yardoc => :rdoc
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2009-06-18 00:23:35 -04:00
|
|
|
task :pages do
|
|
|
|
raise 'No ENV["PROJ"]!' unless proj = ENV["PROJ"]
|
|
|
|
sh %{git checkout #{proj}-pages}
|
2009-06-18 01:31:53 -04:00
|
|
|
sh %{git reset --hard origin/#{proj}-pages}
|
2009-06-18 00:23:35 -04:00
|
|
|
|
|
|
|
sh %{staticmatic build .}
|
2009-06-18 01:44:59 -04:00
|
|
|
sh %{rsync -av --delete site/ /var/www/#{proj}-pages}
|
2009-06-18 00:23:35 -04:00
|
|
|
end
|
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# ----- Coverage -----
|
|
|
|
|
2008-05-15 18:02:45 -04:00
|
|
|
begin
|
|
|
|
require 'rcov/rcovtask'
|
|
|
|
|
2008-05-06 03:43:43 -04: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"
|
2006-10-27 16:36:34 -04:00
|
|
|
end
|
2008-05-06 03:43:43 -04:00
|
|
|
t.verbose = true
|
2006-10-14 19:50:07 -04:00
|
|
|
end
|
2008-05-15 18:02:45 -04:00
|
|
|
rescue LoadError; end
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# ----- Profiling -----
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2008-05-15 18:43:32 -04:00
|
|
|
begin
|
|
|
|
require 'ruby-prof'
|
|
|
|
|
|
|
|
desc <<END
|
2008-05-15 18:02:45 -04:00
|
|
|
Run a profile of haml.
|
2008-05-15 18:43:32 -04: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 18:02:45 -04:00
|
|
|
END
|
2008-05-15 18:43:32 -04: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
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2008-05-15 18:43:32 -04:00
|
|
|
RubyProf.const_get("#{(ENV['OUTPUT'] || 'Flat').capitalize}Printer").new(result).print
|
|
|
|
end
|
|
|
|
rescue LoadError; end
|
2009-02-10 04:39:18 -05:00
|
|
|
|
|
|
|
# ----- Testing Multiple Rails Versions -----
|
|
|
|
|
|
|
|
rails_versions = [
|
|
|
|
"v2.3.0",
|
|
|
|
"v2.2.2",
|
|
|
|
"v2.1.2",
|
|
|
|
"v2.0.5"
|
|
|
|
]
|
|
|
|
|
|
|
|
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
|
2009-02-24 22:55:06 -05:00
|
|
|
end
|
2009-06-18 00:46:25 -04:00
|
|
|
|
|
|
|
# ----- Handling Updates -----
|
|
|
|
|
|
|
|
task :handle_update do
|
2009-06-18 00:48:34 -04:00
|
|
|
sh %{git checkout master}
|
2009-06-18 01:14:14 -04:00
|
|
|
sh %{git fetch origin}
|
|
|
|
sh %{git reset --hard origin/master}
|
2009-06-18 00:48:34 -04:00
|
|
|
|
2009-06-18 01:12:43 -04:00
|
|
|
begin
|
|
|
|
if ENV["REF"] == "refs/heads/master"
|
|
|
|
sh %{rake release_edge}
|
|
|
|
elsif ENV["REF"] =~ %r{^refs/heads/(haml|sass)-pages$}
|
|
|
|
sh %{rake pages PROJ=#{$1}}
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
sh %{git reset --hard HEAD}
|
|
|
|
sh %{git clean -xdf}
|
|
|
|
sh %{git checkout master}
|
2009-06-18 00:46:25 -04:00
|
|
|
end
|
|
|
|
end
|