haml--haml/Rakefile

135 lines
3.6 KiB
Ruby
Raw Normal View History

require 'rubygems'
require 'rake'
# ----- 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 ------
2008-05-06 07:43:43 +00:00
task :default => :test
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'
t.pattern = 'test/**/*_test.rb'
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'
require 'lib/haml'
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
if Haml.version[:rev] && !Rake.application.top_level_tasks.include?('release')
File.open('REVISION', 'w') { |f| f.puts Haml.version[:rev] }
elsif Rake.application.top_level_tasks.include?('release')
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.
Rake::Task[:package].enhance { File.delete('REVISION') if File.exists?('REVISION') }
2008-05-06 07:43:43 +00:00
task :install => [:package] do
sudo = RUBY_PLATFORM =~ /win32/ ? '' : 'sudo'
sh %{#{sudo} gem install --no-ri pkg/haml-#{File.read('VERSION').strip}}
end
2008-05-06 07:43:43 +00: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-05-06 07:43:43 +00:00
# ----- Documentation -----
2008-05-06 07:43:43 +00:00
begin
require 'hanna/rdoctask'
rescue LoadError
require 'rake/rdoctask'
end
Rake::RDocTask.new do |rdoc|
2008-05-06 07:43:43 +00:00
rdoc.title = 'Haml/Sass'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include(*FileList.new('*') do |list|
list.exclude(/(^|[^.a-z])[a-z]+/)
list.exclude('TODO')
end.to_a)
2008-05-06 07:43:43 +00:00
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.rdoc_files.exclude('TODO')
2008-05-06 07:43:43 +00:00
rdoc.rdoc_files.exclude('lib/haml/buffer.rb')
rdoc.rdoc_files.exclude('lib/sass/tree/*')
rdoc.rdoc_dir = 'rdoc'
rdoc.main = 'README.rdoc'
2008-05-06 07:43:43 +00:00
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:02:45 +00:00
desc <<END
Run a profile of haml.
ENGINE=str sets the engine to be profiled (Haml or Sass).
TIMES=n sets the number of runs. Defaults to 100.
FILE=n sets the file to profile. Defaults to 'standard'.
END
2008-05-06 07:43:43 +00:00
task :profile do
require 'test/profile'
2008-04-08 06:09:17 +00:00
2008-05-06 07:43:43 +00:00
engine = ENV['ENGINE'] && ENV['ENGINE'].downcase == 'sass' ? Sass : Haml
2008-04-08 06:09:17 +00:00
2008-05-06 07:43:43 +00:00
puts '-'*51, "Profiling #{engine}", '-'*51
2008-04-08 06:09:17 +00:00
2008-05-06 07:43:43 +00:00
args = []
args.push ENV['TIMES'].to_i if ENV['TIMES']
args.push ENV['FILE'] if ENV['FILE']
2008-04-08 06:09:17 +00:00
2008-05-06 07:43:43 +00:00
profiler = engine::Profiler.new
res = profiler.profile(*args)
puts res
2008-05-06 07:43:43 +00:00
puts '-'*51
end