2006-10-14 23:50:07 +00:00
|
|
|
require 'rubygems'
|
2006-06-30 15:14:44 +00:00
|
|
|
require 'rake'
|
2006-10-14 23:50:07 +00: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-16 04:21:34 +00:00
|
|
|
# ----- Benchmarking -----
|
|
|
|
|
|
|
|
temp_desc = <<END
|
2006-12-16 23:13:01 +00:00
|
|
|
Benchmark haml against ERb.
|
2006-12-16 04:21:34 +00:00
|
|
|
TIMES=n sets the number of runs. Defaults to 100.
|
|
|
|
END
|
|
|
|
|
|
|
|
desc temp_desc.chomp
|
|
|
|
task :benchmark do
|
|
|
|
require 'test/benchmark'
|
|
|
|
|
2007-11-23 18:54:58 +00:00
|
|
|
puts "Running benchmarks #{ENV['TIMES']} times..." if ENV['TIMES']
|
2006-12-16 04:21:34 +00:00
|
|
|
times = ENV['TIMES'].to_i if ENV['TIMES']
|
2007-11-22 03:43:33 +00:00
|
|
|
Haml.benchmark(times || 100)
|
2006-12-16 04:21:34 +00:00
|
|
|
puts '-'*51
|
2006-11-29 02:16:51 +00:00
|
|
|
end
|
|
|
|
|
2006-12-16 23:23:53 +00:00
|
|
|
# Benchmarking gets screwed up if some other tasks have been
|
|
|
|
# initialized.
|
2006-12-16 04:21:34 +00:00
|
|
|
unless ARGV[0] == 'benchmark'
|
2006-08-06 03:18:54 +00:00
|
|
|
|
2006-12-16 04:21:34 +00:00
|
|
|
# ----- Default: Testing ------
|
|
|
|
|
|
|
|
desc 'Default: run unit tests.'
|
|
|
|
task :default => :test
|
2006-06-30 15:14:44 +00:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
require 'rake/testtask'
|
|
|
|
|
2008-03-05 20:19:52 -08:00
|
|
|
Rake::TestTask.new do |t|
|
2006-11-29 02:16:51 +00:00
|
|
|
t.libs << 'lib'
|
|
|
|
t.pattern = 'test/**/*_test.rb'
|
|
|
|
t.verbose = true
|
|
|
|
end
|
2008-03-05 20:19:52 -08:00
|
|
|
Rake::Task[:test].send(:add_comment, <<END)
|
|
|
|
To run with an alternate version of Rails, make test/rails a symlink to that version.
|
|
|
|
END
|
2006-06-30 15:14:44 +00:00
|
|
|
|
2006-12-16 04:21:34 +00:00
|
|
|
# ----- Packaging -----
|
2006-12-12 06:34:11 +00:00
|
|
|
|
|
|
|
require 'rake/gempackagetask'
|
2008-04-10 22:54:40 -07:00
|
|
|
require 'lib/haml'
|
|
|
|
|
|
|
|
# Before we run the package task,
|
|
|
|
# we want to create a REVISION file
|
|
|
|
# if we've checked out Haml from git
|
|
|
|
# and we aren't building for a release.
|
|
|
|
create_revision = Haml.version[:rev] && !Rake.application.top_level_tasks.include?('release')
|
2006-12-16 04:21:34 +00:00
|
|
|
|
2006-12-12 06:34:11 +00:00
|
|
|
spec = Gem::Specification.new do |spec|
|
|
|
|
spec.name = 'haml'
|
2006-12-25 00:22:32 +00:00
|
|
|
spec.summary = "An elegant, structured XHTML/XML templating engine.\nComes with Sass, a similar CSS templating engine."
|
2006-12-12 06:34:11 +00: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 09:19:17 +00:00
|
|
|
#'
|
2008-04-07 23:09:17 -07:00
|
|
|
|
2006-12-12 06:34:11 +00:00
|
|
|
readmes = FileList.new('*') do |list|
|
2008-03-13 01:07:07 -07:00
|
|
|
list.exclude(/(^|[^.a-z])[a-z]+/)
|
2006-12-12 06:34:11 +00:00
|
|
|
list.exclude('TODO')
|
|
|
|
end.to_a
|
2008-01-07 05:50:38 +00:00
|
|
|
spec.executables = ['haml', 'html2haml', 'sass', 'css2sass']
|
2008-04-10 22:54:40 -07:00
|
|
|
readmes << 'REVISION' if create_revision
|
2007-01-20 01:25:46 +00:00
|
|
|
spec.files = FileList['lib/**/*', 'bin/*', 'test/**/*', 'Rakefile', 'init.rb'].to_a + readmes
|
2007-11-17 19:55:26 +00:00
|
|
|
spec.autorequire = ['haml', 'sass']
|
2006-12-12 06:34:11 +00:00
|
|
|
spec.homepage = 'http://haml.hamptoncatlin.com/'
|
|
|
|
spec.has_rdoc = true
|
|
|
|
spec.extra_rdoc_files = readmes
|
|
|
|
spec.rdoc_options += [
|
|
|
|
'--title', 'Haml',
|
2008-03-13 01:07:07 -07:00
|
|
|
'--main', 'README.rdoc',
|
2006-12-12 06:34:11 +00:00
|
|
|
'--exclude', 'lib/haml/buffer.rb',
|
|
|
|
'--line-numbers',
|
|
|
|
'--inline-source'
|
|
|
|
]
|
|
|
|
spec.test_files = FileList['test/**/*_test.rb'].to_a
|
|
|
|
end
|
2006-10-14 23:50:07 +00:00
|
|
|
|
2007-01-05 16:47:11 +00: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 14:50:13 +00:00
|
|
|
|
2008-04-10 22:54:40 -07:00
|
|
|
desc "This is an internal task."
|
|
|
|
task :revision_file do
|
|
|
|
File.open('REVISION', 'w') { |f| f.puts Haml.version[:rev] } if create_revision
|
|
|
|
end
|
|
|
|
Rake::Task[:package].prerequisites.insert(0, :revision_file)
|
|
|
|
|
|
|
|
# We also need to get rid of this file after packaging.
|
|
|
|
Rake::Task[:package].enhance { File.delete('REVISION') if File.exists?('REVISION') }
|
|
|
|
|
2007-11-17 09:19:17 +00:00
|
|
|
task :install => [:package] do
|
2007-11-19 03:45:01 +00:00
|
|
|
sh %{gem install --no-ri pkg/haml-#{File.read('VERSION').strip}}
|
2007-11-17 09:19:17 +00:00
|
|
|
end
|
|
|
|
|
2008-01-07 01:59:55 +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}
|
2008-01-07 05:05:48 +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 %{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}
|
2008-01-07 01:59:55 +00:00
|
|
|
end
|
|
|
|
|
2006-12-16 04:21:34 +00:00
|
|
|
# ----- Documentation -----
|
2006-10-14 23:50:07 +00:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
require 'rake/rdoctask'
|
2006-12-16 04:21:34 +00:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
rdoc_task = Proc.new do |rdoc|
|
2006-12-19 02:56:49 +00:00
|
|
|
rdoc.title = 'Haml/Sass'
|
2006-11-29 02:16:51 +00:00
|
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
2008-03-13 01:07:07 -07:00
|
|
|
rdoc.rdoc_files.include('README.rdoc')
|
2006-11-29 02:16:51 +00:00
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
rdoc.rdoc_files.exclude('lib/haml/buffer.rb')
|
2007-03-25 08:20:33 +00:00
|
|
|
rdoc.rdoc_files.exclude('lib/haml/util.rb')
|
2006-12-17 16:45:07 +00:00
|
|
|
rdoc.rdoc_files.exclude('lib/sass/tree/*')
|
2006-11-29 02:16:51 +00:00
|
|
|
end
|
2006-08-08 22:46:19 +00:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
Rake::RDocTask.new do |rdoc|
|
|
|
|
rdoc_task.call(rdoc)
|
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
|
|
end
|
2006-10-14 23:50:07 +00:00
|
|
|
|
2006-11-29 02:16:51 +00: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')
|
2008-04-07 23:09:17 -07:00
|
|
|
|
2006-12-17 16:45:07 +00:00
|
|
|
# Get rid of exclusion rules
|
2006-11-29 02:16:51 +00:00
|
|
|
rdoc.rdoc_files = Rake::FileList.new(*rdoc.rdoc_files.to_a)
|
|
|
|
rdoc.rdoc_files.include('lib/haml/buffer.rb')
|
2006-12-17 16:45:07 +00:00
|
|
|
rdoc.rdoc_files.include('lib/sass/tree/*')
|
2006-11-29 02:16:51 +00:00
|
|
|
end
|
2006-10-14 23:50:07 +00:00
|
|
|
|
2006-12-16 04:21:34 +00:00
|
|
|
# ----- Coverage -----
|
2006-10-14 23:50:07 +00:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
unless not_loaded.include? 'rcov/rcovtask'
|
|
|
|
Rcov::RcovTask.new do |t|
|
|
|
|
t.libs << "test"
|
2006-12-03 23:56:47 +00:00
|
|
|
t.test_files = FileList['test/**/*_test.rb']
|
2007-01-03 08:45:59 +00:00
|
|
|
t.rcov_opts << '-x' << '"^\/"'
|
2006-11-29 02:16:51 +00:00
|
|
|
if ENV['NON_NATIVE']
|
|
|
|
t.rcov_opts << "--no-rcovrt"
|
|
|
|
end
|
|
|
|
t.verbose = true
|
2006-10-27 20:36:34 +00:00
|
|
|
end
|
2006-10-14 23:50:07 +00:00
|
|
|
end
|
|
|
|
|
2006-12-16 04:21:34 +00:00
|
|
|
# ----- Profiling -----
|
2006-10-14 23:50:07 +00:00
|
|
|
|
2006-12-16 04:21:34 +00:00
|
|
|
temp_desc = <<-END
|
2006-12-16 23:13:01 +00:00
|
|
|
Run a profile of haml.
|
2007-01-07 06:29:12 +00:00
|
|
|
ENGINE=str sets the engine to be profiled (Haml or Sass).
|
2006-12-16 04:21:34 +00:00
|
|
|
TIMES=n sets the number of runs. Defaults to 100.
|
|
|
|
FILE=n sets the file to profile. Defaults to 'standard'.
|
|
|
|
END
|
2006-11-29 02:16:51 +00:00
|
|
|
desc temp_desc.chomp
|
|
|
|
task :profile do
|
|
|
|
require 'test/profile'
|
2007-01-07 06:29:12 +00:00
|
|
|
|
|
|
|
engine = ENV['ENGINE'] && ENV['ENGINE'].downcase == 'sass' ? Sass : Haml
|
2008-04-07 23:09:17 -07:00
|
|
|
|
2007-01-07 06:29:12 +00:00
|
|
|
puts '-'*51, "Profiling #{engine}", '-'*51
|
2008-04-07 23:09:17 -07:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
args = []
|
|
|
|
args.push ENV['TIMES'].to_i if ENV['TIMES']
|
|
|
|
args.push ENV['FILE'] if ENV['FILE']
|
2008-04-07 23:09:17 -07:00
|
|
|
|
2007-01-07 06:29:12 +00:00
|
|
|
profiler = engine::Profiler.new
|
2006-11-29 02:16:51 +00:00
|
|
|
res = profiler.profile(*args)
|
|
|
|
puts res
|
2008-04-07 23:09:17 -07:00
|
|
|
|
2006-11-29 02:16:51 +00:00
|
|
|
puts '-'*51
|
|
|
|
end
|
2006-12-16 04:21:34 +00:00
|
|
|
|
2006-08-08 22:46:19 +00:00
|
|
|
end
|