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
|
|
|
|
|
|
|
volatile_requires = ['rcov/rcovtask']
|
|
|
|
not_loaded = []
|
|
|
|
volatile_requires.each do |file|
|
|
|
|
begin
|
|
|
|
require file
|
|
|
|
rescue LoadError
|
|
|
|
not_loaded.push file
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Benchmarking -----
|
|
|
|
|
|
|
|
temp_desc = <<END
|
2006-12-16 18:13:01 -05:00
|
|
|
Benchmark haml against ERb.
|
2006-12-15 23:21:34 -05:00
|
|
|
TIMES=n sets the number of runs. Defaults to 100.
|
|
|
|
END
|
|
|
|
|
|
|
|
desc temp_desc.chomp
|
|
|
|
task :benchmark do
|
|
|
|
require 'test/benchmark'
|
|
|
|
|
|
|
|
puts '-'*51, "Benchmark: Haml vs. ERb", '-'*51
|
|
|
|
puts "Running benchmark #{ENV['TIMES']} times..." if ENV['TIMES']
|
|
|
|
times = ENV['TIMES'].to_i if ENV['TIMES']
|
|
|
|
benchmarker = Haml::Benchmarker.new
|
|
|
|
puts benchmarker.benchmark(times || 100)
|
|
|
|
puts '-'*51
|
2006-11-28 21:16:51 -05:00
|
|
|
end
|
|
|
|
|
2006-12-16 18:23:53 -05:00
|
|
|
# Benchmarking gets screwed up if some other tasks have been
|
|
|
|
# initialized.
|
2006-12-15 23:21:34 -05:00
|
|
|
unless ARGV[0] == 'benchmark'
|
2006-08-05 23:18:54 -04:00
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Default: Testing ------
|
|
|
|
|
|
|
|
desc 'Default: run unit tests.'
|
|
|
|
task :default => :test
|
2006-06-30 11:14:44 -04:00
|
|
|
|
2006-11-28 21:16:51 -05:00
|
|
|
require 'rake/testtask'
|
|
|
|
|
2006-12-04 11:50:28 -05:00
|
|
|
desc 'Test the Haml plugin'
|
2006-11-28 21:16:51 -05:00
|
|
|
Rake::TestTask.new(:test) do |t|
|
|
|
|
t.libs << 'lib'
|
|
|
|
t.pattern = 'test/**/*_test.rb'
|
|
|
|
t.verbose = true
|
|
|
|
end
|
2006-06-30 11:14:44 -04:00
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Packaging -----
|
2006-12-12 01:34:11 -05:00
|
|
|
|
|
|
|
require 'rake/gempackagetask'
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2006-12-12 01:34:11 -05:00
|
|
|
spec = Gem::Specification.new do |spec|
|
|
|
|
spec.name = 'haml'
|
2006-12-24 19:22:32 -05:00
|
|
|
spec.summary = "An elegant, structured XHTML/XML templating engine.\nComes with Sass, a similar CSS templating engine."
|
2006-12-12 01:34:11 -05:00
|
|
|
spec.version = File.read('VERSION').strip
|
|
|
|
spec.author = 'Hampton Catlin'
|
|
|
|
spec.email = 'haml@googlegroups.com'
|
|
|
|
spec.description = <<-END
|
|
|
|
Haml (HTML Abstraction Markup Language) is a layer on top of XHTML or XML
|
|
|
|
that's designed to express the structure of XHTML or XML documents
|
|
|
|
in a non-repetitive, elegant, easy way,
|
|
|
|
using indentation rather than closing tags
|
|
|
|
and allowing Ruby to be embedded with ease.
|
|
|
|
It was originally envisioned as a plugin for Ruby on Rails,
|
|
|
|
but it can function as a stand-alone templating engine.
|
|
|
|
END
|
2007-11-17 04:19:17 -05:00
|
|
|
#'
|
2006-12-12 01:34:11 -05:00
|
|
|
|
|
|
|
readmes = FileList.new('*') do |list|
|
|
|
|
list.exclude(/[a-z]/)
|
|
|
|
list.exclude('TODO')
|
|
|
|
end.to_a
|
2007-01-24 22:41:41 -05:00
|
|
|
spec.executables = ['haml', 'html2haml', 'sass']
|
2007-01-19 20:25:46 -05:00
|
|
|
spec.files = FileList['lib/**/*', 'bin/*', 'test/**/*', 'Rakefile', 'init.rb'].to_a + readmes
|
2006-12-12 01:34:11 -05:00
|
|
|
spec.homepage = 'http://haml.hamptoncatlin.com/'
|
|
|
|
spec.has_rdoc = true
|
|
|
|
spec.extra_rdoc_files = readmes
|
|
|
|
spec.rdoc_options += [
|
|
|
|
'--title', 'Haml',
|
2006-12-17 20:31:11 -05:00
|
|
|
'--main', 'README',
|
2006-12-12 01:34:11 -05:00
|
|
|
'--exclude', 'lib/haml/buffer.rb',
|
|
|
|
'--line-numbers',
|
|
|
|
'--inline-source'
|
|
|
|
]
|
|
|
|
spec.test_files = FileList['test/**/*_test.rb'].to_a
|
|
|
|
end
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2007-01-05 11:47:11 -05:00
|
|
|
Rake::GemPackageTask.new(spec) do |pkg|
|
|
|
|
pkg.need_zip = true
|
|
|
|
pkg.need_tar_gz = true
|
|
|
|
pkg.need_tar_bz2 = true
|
|
|
|
end
|
2006-09-12 10:50:13 -04:00
|
|
|
|
2007-11-17 04:19:17 -05:00
|
|
|
task :install => [:package] do
|
|
|
|
sh %{sudo gem install pkg/haml-#{File.read('VERSION').strip}}
|
|
|
|
end
|
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Documentation -----
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2006-11-28 21:16:51 -05:00
|
|
|
require 'rake/rdoctask'
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2006-11-28 21:16:51 -05:00
|
|
|
rdoc_task = Proc.new do |rdoc|
|
2006-12-18 21:56:49 -05:00
|
|
|
rdoc.title = 'Haml/Sass'
|
2006-11-28 21:16:51 -05:00
|
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
2006-12-17 20:31:11 -05:00
|
|
|
rdoc.rdoc_files.include('README')
|
2006-11-28 21:16:51 -05:00
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
rdoc.rdoc_files.exclude('lib/haml/buffer.rb')
|
2007-03-25 04:20:33 -04:00
|
|
|
rdoc.rdoc_files.exclude('lib/haml/util.rb')
|
2006-12-17 11:45:07 -05:00
|
|
|
rdoc.rdoc_files.exclude('lib/sass/tree/*')
|
2006-11-28 21:16:51 -05:00
|
|
|
end
|
2006-08-08 18:46:19 -04:00
|
|
|
|
2006-11-28 21:16:51 -05:00
|
|
|
Rake::RDocTask.new do |rdoc|
|
|
|
|
rdoc_task.call(rdoc)
|
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
|
|
end
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2006-11-28 21:16:51 -05:00
|
|
|
Rake::RDocTask.new(:rdoc_devel) do |rdoc|
|
|
|
|
rdoc_task.call(rdoc)
|
|
|
|
rdoc.rdoc_dir = 'rdoc_devel'
|
|
|
|
rdoc.options << '--all'
|
|
|
|
rdoc.rdoc_files.include('test/*.rb')
|
2006-12-17 11:45:07 -05:00
|
|
|
|
|
|
|
# Get rid of exclusion rules
|
2006-11-28 21:16:51 -05:00
|
|
|
rdoc.rdoc_files = Rake::FileList.new(*rdoc.rdoc_files.to_a)
|
|
|
|
rdoc.rdoc_files.include('lib/haml/buffer.rb')
|
2006-12-17 11:45:07 -05:00
|
|
|
rdoc.rdoc_files.include('lib/sass/tree/*')
|
2006-11-28 21:16:51 -05:00
|
|
|
end
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Coverage -----
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2006-11-28 21:16:51 -05:00
|
|
|
unless not_loaded.include? 'rcov/rcovtask'
|
|
|
|
Rcov::RcovTask.new do |t|
|
|
|
|
t.libs << "test"
|
2006-12-03 18:56:47 -05:00
|
|
|
t.test_files = FileList['test/**/*_test.rb']
|
2007-01-03 03:45:59 -05:00
|
|
|
t.rcov_opts << '-x' << '"^\/"'
|
2006-11-28 21:16:51 -05:00
|
|
|
if ENV['NON_NATIVE']
|
|
|
|
t.rcov_opts << "--no-rcovrt"
|
|
|
|
end
|
|
|
|
t.verbose = true
|
2006-10-27 16:36:34 -04:00
|
|
|
end
|
2006-10-14 19:50:07 -04:00
|
|
|
end
|
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
# ----- Profiling -----
|
2006-10-14 19:50:07 -04:00
|
|
|
|
2006-12-15 23:21:34 -05:00
|
|
|
temp_desc = <<-END
|
2006-12-16 18:13:01 -05:00
|
|
|
Run a profile of haml.
|
2007-01-07 01:29:12 -05:00
|
|
|
ENGINE=str sets the engine to be profiled (Haml or Sass).
|
2006-12-15 23:21:34 -05:00
|
|
|
TIMES=n sets the number of runs. Defaults to 100.
|
|
|
|
FILE=n sets the file to profile. Defaults to 'standard'.
|
|
|
|
END
|
2006-11-28 21:16:51 -05:00
|
|
|
desc temp_desc.chomp
|
|
|
|
task :profile do
|
|
|
|
require 'test/profile'
|
2007-01-07 01:29:12 -05:00
|
|
|
|
|
|
|
engine = ENV['ENGINE'] && ENV['ENGINE'].downcase == 'sass' ? Sass : Haml
|
2006-11-28 21:16:51 -05:00
|
|
|
|
2007-01-07 01:29:12 -05:00
|
|
|
puts '-'*51, "Profiling #{engine}", '-'*51
|
2006-11-28 21:16:51 -05:00
|
|
|
|
|
|
|
args = []
|
|
|
|
args.push ENV['TIMES'].to_i if ENV['TIMES']
|
|
|
|
args.push ENV['FILE'] if ENV['FILE']
|
|
|
|
|
2007-01-07 01:29:12 -05:00
|
|
|
profiler = engine::Profiler.new
|
2006-11-28 21:16:51 -05:00
|
|
|
res = profiler.profile(*args)
|
|
|
|
puts res
|
|
|
|
|
|
|
|
puts '-'*51
|
|
|
|
end
|
2006-12-15 23:21:34 -05:00
|
|
|
|
2006-08-08 18:46:19 -04:00
|
|
|
end
|