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}
|
|
|
|
sh %{git fetch origin}
|
|
|
|
sh %{git merge 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}
|
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-04-29 22:13:13 -04:00
|
|
|
sh %{git commit -m "Bump edge gem 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-04-29 22:27:25 -04:00
|
|
|
task :watch_for_edge_update do
|
|
|
|
sh %{ruby edge_gem_watch.rb}
|
|
|
|
end
|
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
# ----- Documentation -----
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2008-05-06 03:43:43 -04:00
|
|
|
begin
|
|
|
|
require 'hanna/rdoctask'
|
|
|
|
rescue LoadError
|
|
|
|
require 'rake/rdoctask'
|
|
|
|
end
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2008-05-15 17:45:20 -04:00
|
|
|
Rake::RDocTask.new do |rdoc|
|
2008-05-06 03:43:43 -04:00
|
|
|
rdoc.title = 'Haml/Sass'
|
|
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
2008-05-14 11:02:13 -04:00
|
|
|
rdoc.rdoc_files.include(*FileList.new('*') do |list|
|
|
|
|
list.exclude(/(^|[^.a-z])[a-z]+/)
|
|
|
|
list.exclude('TODO')
|
|
|
|
end.to_a)
|
2008-05-06 03:43:43 -04:00
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
2008-05-14 11:02:13 -04:00
|
|
|
rdoc.rdoc_files.exclude('TODO')
|
2008-05-06 03:43:43 -04:00
|
|
|
rdoc.rdoc_files.exclude('lib/haml/buffer.rb')
|
|
|
|
rdoc.rdoc_files.exclude('lib/sass/tree/*')
|
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
2008-05-15 17:46:38 -04:00
|
|
|
rdoc.main = 'README.rdoc'
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
2006-10-14 19:50:07 -04:00
|
|
|
|
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
|