2010-02-28 19:50:33 -05:00
|
|
|
# ----- Utility Functions -----
|
|
|
|
|
|
|
|
def scope(path)
|
|
|
|
File.join(File.dirname(__FILE__), path)
|
|
|
|
end
|
|
|
|
|
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'
|
2010-02-28 19:50:33 -05:00
|
|
|
test_files = FileList[scope('test/**/*_test.rb')]
|
|
|
|
test_files.exclude(scope('test/rails/*'))
|
|
|
|
test_files.exclude(scope('test/plugins/*'))
|
|
|
|
test_files.exclude(scope('test/haml/spec/*'))
|
2008-06-19 01:26:21 -04:00
|
|
|
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
|
|
|
|
2010-04-30 03:40:20 -04:00
|
|
|
# Don't use Rake::GemPackageTast because we want prerequisites to run
|
|
|
|
# before we load the gemspec.
|
|
|
|
desc "Build all the packages."
|
|
|
|
task :package => [:revision_file, :submodules] do
|
|
|
|
load scope('haml.gemspec')
|
|
|
|
Gem::Builder.new(HAML_GEMSPEC).build
|
2010-04-30 03:55:50 -04:00
|
|
|
pkg = "#{HAML_GEMSPEC.name}-#{HAML_GEMSPEC.version}"
|
2010-04-30 03:40:20 -04:00
|
|
|
mkdir_p "pkg"
|
|
|
|
verbose(true) {mv "#{pkg}.gem", "pkg/#{pkg}.gem"}
|
|
|
|
|
|
|
|
sh %{rm -f pkg/#{pkg}.tar.gz}
|
|
|
|
verbose(false) {HAML_GEMSPEC.files.each {|f| sh %{tar rf pkg/#{pkg}.tar #{f}}}}
|
|
|
|
sh %{gzip pkg/#{pkg}.tar}
|
2008-05-06 04:00:52 -04:00
|
|
|
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'
|
|
|
|
|
2010-02-28 19:50:33 -05:00
|
|
|
release = Rake.application.top_level_tasks.include?('release') || File.exist?(scope('EDGE_GEM_VERSION'))
|
2009-04-29 19:52:57 -04:00
|
|
|
if Haml.version[:rev] && !release
|
2010-02-28 19:50:33 -05:00
|
|
|
File.open(scope('REVISION'), 'w') { |f| f.puts Haml.version[:rev] }
|
2009-04-29 19:52:57 -04:00
|
|
|
elsif release
|
2010-02-28 19:50:33 -05:00
|
|
|
File.open(scope('REVISION'), 'w') { |f| f.puts "(release)" }
|
2008-05-06 03:43:43 -04:00
|
|
|
else
|
2010-02-28 19:50:33 -05:00
|
|
|
File.open(scope('REVISION'), 'w') { |f| f.puts "(unknown)" }
|
2008-04-11 01:54:40 -04:00
|
|
|
end
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
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.
|
2010-02-28 19:50:33 -05:00
|
|
|
at_exit { File.delete(scope('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
|
2010-03-25 18:07:34 -04:00
|
|
|
sudo = RUBY_PLATFORM =~ /win32|mingw/ ? '' : 'sudo'
|
2009-02-24 22:55:06 -05:00
|
|
|
gem = RUBY_PLATFORM =~ /java/ ? 'jgem' : 'gem'
|
2010-02-28 19:50:33 -05:00
|
|
|
sh %{#{sudo} #{gem} install --no-ri pkg/haml-#{File.read(scope('VERSION')).strip}}
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
2007-11-17 04:19:17 -05:00
|
|
|
|
2009-09-21 17:21:38 -04:00
|
|
|
desc "Release a new Haml package to Rubyforge."
|
|
|
|
task :release => [:check_release, :release_elpa, :package] do
|
2010-02-28 19:50:33 -05:00
|
|
|
name = File.read(scope("VERSION_NAME")).strip
|
|
|
|
version = File.read(scope("VERSION")).strip
|
2008-05-06 03:43:43 -04: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}
|
2009-11-22 16:46:53 -05:00
|
|
|
sh %{gem push pkg/haml-#{version}.gem}
|
2008-05-06 03:43:43 -04:00
|
|
|
end
|
2008-01-06 20:59:55 -05:00
|
|
|
|
2009-09-21 17:21:38 -04:00
|
|
|
# Releases haml-mode.el and sass-mode.el to ELPA.
|
|
|
|
task :release_elpa do
|
|
|
|
require 'tlsmail'
|
|
|
|
require 'time'
|
2010-03-13 01:22:20 -05:00
|
|
|
require scope('lib/haml')
|
2009-09-21 17:21:38 -04:00
|
|
|
|
2010-03-31 03:16:46 -04:00
|
|
|
next if Haml.version[:prerelease]
|
2010-02-28 19:53:58 -05:00
|
|
|
version = Haml.version[:number]
|
2009-09-21 17:21:38 -04:00
|
|
|
|
|
|
|
haml_unchanged = mode_unchanged?(:haml, version)
|
|
|
|
sass_unchanged = mode_unchanged?(:sass, version)
|
|
|
|
next if haml_unchanged && sass_unchanged
|
|
|
|
raise "haml-mode.el and sass-mode.el are out of sync." if haml_unchanged ^ sass_unchanged
|
|
|
|
|
2010-02-28 19:50:33 -05:00
|
|
|
if sass_unchanged && File.read(scope("extra/sass-mode.el")).
|
2009-10-04 20:43:46 -04:00
|
|
|
include?(";; Package-Requires: ((haml-mode #{sass_unchanged.inspect}))")
|
2009-10-04 20:35:36 -04:00
|
|
|
raise "sass-mode.el doesn't require the same version of haml-mode."
|
|
|
|
end
|
|
|
|
|
2009-09-21 17:45:04 -04:00
|
|
|
from = `git config user.email`.strip
|
2009-09-21 17:42:39 -04:00
|
|
|
raise "Don't know how to send emails except via Gmail" unless from =~ /@gmail.com$/
|
|
|
|
|
2009-09-21 17:21:38 -04:00
|
|
|
to = "elpa@tromey.com"
|
|
|
|
Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)
|
|
|
|
Net::SMTP.start('smtp.gmail.com', 587, 'gmail.com', from, read_password("GMail Password"), :login) do |smtp|
|
|
|
|
smtp.send_message(<<CONTENT, from, to)
|
|
|
|
From: Nathan Weizenbaum <#{from}>
|
|
|
|
To: #{to}
|
|
|
|
Subject: Submitting haml-mode and sass-mode #{version}
|
|
|
|
Date: #{Time.now.rfc2822}
|
|
|
|
|
|
|
|
haml-mode and sass-mode #{version} are packaged and ready to be included in ELPA.
|
|
|
|
They can be downloaded from:
|
|
|
|
|
2010-02-28 19:53:58 -05:00
|
|
|
http://github.com/nex3/haml/raw/#{Haml.version[:rev]}/extra/haml-mode.el
|
|
|
|
http://github.com/nex3/haml/raw/#{Haml.version[:rev]}/extra/sass-mode.el
|
2009-09-21 17:21:38 -04:00
|
|
|
CONTENT
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Ensures that the version have been updated for a new release.
|
|
|
|
task :check_release do
|
2010-02-28 19:50:33 -05:00
|
|
|
version = File.read(scope("VERSION")).strip
|
2009-09-21 17:21:38 -04:00
|
|
|
raise "There have been changes since current version (#{version})" if changed_since?(version)
|
2010-02-28 19:50:33 -05:00
|
|
|
raise "VERSION_NAME must not be 'Bleeding Edge'" if File.read(scope("VERSION_NAME")) == "Bleeding Edge"
|
2009-09-21 17:21:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Reads a password from the command line.
|
|
|
|
#
|
|
|
|
# @param name [String] The prompt to use to read the password
|
|
|
|
def read_password(prompt)
|
|
|
|
require 'readline'
|
|
|
|
system "stty -echo"
|
|
|
|
Readline.readline("#{prompt}: ").strip
|
|
|
|
ensure
|
|
|
|
system "stty echo"
|
|
|
|
puts
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns whether or not the repository, or specific files,
|
|
|
|
# has/have changed since a given revision.
|
|
|
|
#
|
|
|
|
# @param rev [String] The revision to check against
|
|
|
|
# @param files [Array<String>] The files to check.
|
|
|
|
# If this is empty, checks the entire repository
|
|
|
|
def changed_since?(rev, *files)
|
|
|
|
IO.popen("git diff --exit-code #{rev} #{files.join(' ')}") {}
|
|
|
|
return !$?.success?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns whether or not the given Emacs mode file (haml or sass)
|
|
|
|
# has changed since the given version.
|
|
|
|
#
|
|
|
|
# @param mode [String, Symbol] The name of the mode
|
|
|
|
# @param version [String] The version number
|
2009-10-04 20:35:36 -04:00
|
|
|
# @return [String, nil] The version number if the version has changed
|
2009-09-21 17:21:38 -04:00
|
|
|
def mode_unchanged?(mode, version)
|
2010-02-28 19:50:33 -05:00
|
|
|
mode_version = File.read(scope("extra/#{mode}-mode.el")).scan(/^;; Version: (.*)$/).first.first
|
2009-09-21 17:21:38 -04:00
|
|
|
return false if mode_version == version
|
2009-10-04 20:35:36 -04:00
|
|
|
return mode_version unless changed_since?(mode_version, "extra/#{mode}-mode.el")
|
2009-09-28 01:55:36 -04:00
|
|
|
raise "#{mode}-mode.el version is #{version.inspect}, but it has changed as of #{version.inspect}"
|
2009-09-21 17:21:38 -04:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2010-01-16 18:57:12 -05:00
|
|
|
task :submodules do
|
|
|
|
if File.exist?(File.dirname(__FILE__) + "/.git")
|
|
|
|
sh %{git submodule sync}
|
|
|
|
sh %{git submodule update --init}
|
|
|
|
elsif !File.exist?(File.dirname(__FILE__) + "/vendor/fssm/lib")
|
|
|
|
warn <<WARN
|
|
|
|
WARNING: vendor/fssm doesn't exist, and this isn't a git repository so
|
|
|
|
I can't get it automatically!
|
|
|
|
WARN
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-04-29 19:52:57 -04:00
|
|
|
task :release_edge do
|
2009-07-04 19:36:50 -04:00
|
|
|
ensure_git_cleanup do
|
|
|
|
puts "#{'=' * 50} Running rake release_edge"
|
2009-06-25 03:51:23 -04:00
|
|
|
|
2009-07-04 19:36:50 -04:00
|
|
|
sh %{git checkout edge-gem}
|
|
|
|
sh %{git reset --hard origin/edge-gem}
|
|
|
|
sh %{git merge origin/master}
|
2009-04-29 19:52:57 -04:00
|
|
|
|
2009-07-04 19:36:50 -04:00
|
|
|
# Get the current master branch version
|
2010-03-31 18:53:59 -04:00
|
|
|
version = File.read(scope('VERSION')).strip.split('.')
|
|
|
|
pr = version[3]
|
|
|
|
version = version.map {|n| n.to_i}
|
|
|
|
unless pr || (version[1] % 2 == 1 && version[2] == 0)
|
2009-07-04 19:36:50 -04:00
|
|
|
raise "#{version.join('.')} is not a development version"
|
|
|
|
end
|
2009-04-29 19:52:57 -04:00
|
|
|
|
2009-07-04 19:36:50 -04:00
|
|
|
# Bump the edge gem version
|
2010-02-28 19:50:33 -05:00
|
|
|
edge_version = File.read(scope('EDGE_GEM_VERSION')).strip.split('.').map {|n| n.to_i}
|
2010-03-31 18:53:59 -04:00
|
|
|
if !pr && (edge_version[0..1] != version[0..1])
|
2009-07-04 19:36:50 -04:00
|
|
|
# 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('.')
|
2010-02-28 19:50:33 -05:00
|
|
|
File.open(scope('EDGE_GEM_VERSION'), 'w') {|f| f.puts(edge_version)}
|
2009-07-04 19:36:50 -04:00
|
|
|
sh %{git commit -m "Bump edge gem version to #{edge_version}." EDGE_GEM_VERSION}
|
|
|
|
sh %{git push origin edge-gem}
|
|
|
|
|
|
|
|
# Package the edge gem with the proper version
|
2010-02-28 19:50:33 -05:00
|
|
|
File.open(scope('VERSION'), 'w') {|f| f.puts(edge_version)}
|
2009-07-04 19:36:50 -04:00
|
|
|
sh %{rake package}
|
|
|
|
sh %{git checkout VERSION}
|
|
|
|
|
|
|
|
sh %{rubyforge add_release haml haml-edge "Bleeding Edge (v#{edge_version})" pkg/haml-edge-#{edge_version}.gem}
|
2009-11-28 17:56:07 -05:00
|
|
|
sh %{gem push pkg/haml-edge-#{edge_version}.gem}
|
2009-04-29 19:52:57 -04:00
|
|
|
end
|
|
|
|
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
|
|
|
|
2010-04-20 02:25:44 -04:00
|
|
|
namespace :doc do
|
2009-11-23 17:01:16 -05:00
|
|
|
task :sass do
|
2010-02-28 19:50:33 -05:00
|
|
|
require scope('lib/sass')
|
|
|
|
Dir[scope("yard/default/**/*.sass")].each do |sass|
|
2009-11-23 17:01:16 -05:00
|
|
|
File.open(sass.gsub(/sass$/, 'css'), 'w') do |f|
|
|
|
|
f.write(Sass::Engine.new(File.read(sass)).render)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-04-20 02:25:44 -04:00
|
|
|
|
|
|
|
desc "List all undocumented methods and classes."
|
|
|
|
task :undocumented do
|
|
|
|
opts = ENV["YARD_OPTS"] || ""
|
|
|
|
ENV["YARD_OPTS"] = opts.dup + <<OPTS
|
|
|
|
--list --query "
|
|
|
|
object.docstring.blank? &&
|
|
|
|
!(object.type == :method && object.is_alias?)"
|
|
|
|
OPTS
|
|
|
|
Rake::Task['yard'].execute
|
|
|
|
end
|
2009-11-23 17:01:16 -05:00
|
|
|
end
|
|
|
|
|
2009-03-30 04:27:08 -04:00
|
|
|
YARD::Rake::YardocTask.new do |t|
|
2010-02-28 19:50:33 -05:00
|
|
|
t.files = FileList.new(scope('lib/**/*.rb')) do |list|
|
2010-05-04 20:38:50 -04:00
|
|
|
list.exclude('lib/haml/template/patch.rb')
|
|
|
|
list.exclude('lib/haml/template/plugin.rb')
|
2010-04-20 05:20:01 -04:00
|
|
|
list.exclude('lib/haml/railtie.rb')
|
2009-05-31 23:16:09 -04:00
|
|
|
list.exclude('lib/haml/helpers/action_view_mods.rb')
|
2010-04-20 02:25:44 -04:00
|
|
|
list.exclude('lib/haml/helpers/xss_mods.rb')
|
|
|
|
list.exclude('lib/sass/plugin/merb.rb')
|
|
|
|
list.exclude('lib/sass/plugin/rails.rb')
|
2010-04-26 16:58:06 -04:00
|
|
|
list.exclude('lib/sass/less.rb')
|
2009-05-31 23:16:09 -04:00
|
|
|
end.to_a
|
2010-01-17 19:23:29 -05:00
|
|
|
t.options << '--incremental' if Rake.application.top_level_tasks.include?('redoc')
|
2010-02-28 19:50:33 -05:00
|
|
|
t.options += FileList.new(scope('yard/*.rb')).to_a.map {|f| ['-e', f]}.flatten
|
|
|
|
files = FileList.new(scope('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(',')
|
2010-02-28 19:50:33 -05:00
|
|
|
t.options << '--template-path' << scope('yard')
|
2010-03-06 17:39:30 -05:00
|
|
|
t.options << '--title' << ENV["YARD_TITLE"] if ENV["YARD_TITLE"]
|
2010-04-20 02:25:44 -04:00
|
|
|
|
|
|
|
t.before = lambda do
|
|
|
|
if ENV["YARD_OPTS"]
|
|
|
|
require 'shellwords'
|
|
|
|
t.options.concat(Shellwords.shellwords(ENV["YARD_OPTS"]))
|
|
|
|
end
|
2010-04-19 22:26:08 -04:00
|
|
|
end
|
2009-03-30 04:27:08 -04:00
|
|
|
end
|
2010-04-20 02:25:44 -04:00
|
|
|
Rake::Task['yard'].prerequisites.insert(0, 'doc:sass')
|
2009-11-23 16:44:31 -05:00
|
|
|
Rake::Task['yard'].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-11-23 16:44:31 -05:00
|
|
|
task :doc => :yard
|
|
|
|
task :redoc => :yard
|
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
|
2009-11-28 18:03:35 -05:00
|
|
|
task :yard => :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
|
2009-07-04 19:36:50 -04:00
|
|
|
ensure_git_cleanup do
|
|
|
|
puts "#{'=' * 50} Running rake pages PROJ=#{ENV["PROJ"].inspect}"
|
|
|
|
raise 'No ENV["PROJ"]!' unless proj = ENV["PROJ"]
|
|
|
|
sh %{git checkout #{proj}-pages}
|
|
|
|
sh %{git reset --hard origin/#{proj}-pages}
|
|
|
|
|
2009-10-09 01:32:56 -04:00
|
|
|
Dir.chdir("/var/www/#{proj}-pages") do
|
|
|
|
sh %{git fetch origin}
|
2009-10-09 01:28:47 -04:00
|
|
|
|
2009-10-09 01:32:56 -04:00
|
|
|
sh %{git checkout stable}
|
|
|
|
sh %{git reset --hard origin/stable}
|
2009-10-09 01:28:47 -04:00
|
|
|
|
2009-10-09 01:32:56 -04:00
|
|
|
sh %{git checkout #{proj}-pages}
|
|
|
|
sh %{git reset --hard origin/#{proj}-pages}
|
|
|
|
sh %{rake build --trace}
|
|
|
|
sh %{mkdir -p tmp}
|
|
|
|
sh %{touch tmp/restart.txt}
|
|
|
|
end
|
2009-07-04 19:36:50 -04:00
|
|
|
end
|
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|
|
2010-02-28 19:50:33 -05:00
|
|
|
t.test_files = FileList[scope('test/**/*_test.rb')]
|
2008-05-06 03:43:43 -04:00
|
|
|
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'
|
|
|
|
|
2010-02-28 19:50:33 -05:00
|
|
|
file = File.read(scope("test/sass/templates/#{file || 'complex'}.sass"))
|
2008-05-15 18:43:32 -04:00
|
|
|
result = RubyProf.profile { times.times { Sass::Engine.new(file).render } }
|
|
|
|
else
|
|
|
|
require 'lib/haml'
|
|
|
|
|
2010-02-28 19:50:33 -05:00
|
|
|
file = File.read(scope("test/haml/templates/#{file || 'standard'}.haml"))
|
2008-05-15 18:43:32 -04:00
|
|
|
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 = [
|
2010-03-02 18:36:01 -05:00
|
|
|
"v2.3.5",
|
|
|
|
"v2.2.3",
|
2009-02-10 04:39:18 -05:00
|
|
|
"v2.1.2",
|
|
|
|
]
|
2009-11-08 19:45:51 -05:00
|
|
|
rails_versions << "v2.0.5" if RUBY_VERSION =~ /^1\.8/
|
2009-02-10 04:39:18 -05:00
|
|
|
|
2010-03-02 18:50:42 -05:00
|
|
|
def test_rails_version(version)
|
|
|
|
Dir.chdir "test/rails" do
|
|
|
|
`git checkout #{version}`
|
|
|
|
end
|
|
|
|
puts "Testing Rails #{version}"
|
|
|
|
Rake::Task['test'].reenable
|
|
|
|
Rake::Task['test'].execute
|
|
|
|
end
|
|
|
|
|
2009-02-10 04:39:18 -05:00
|
|
|
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."
|
2010-03-02 18:50:42 -05:00
|
|
|
system("git clone git://github.com/rails/rails.git test/rails") rescue nil
|
2009-02-10 04:39:18 -05:00
|
|
|
begin
|
2010-03-02 18:50:42 -05:00
|
|
|
rails_versions.each {|version| test_rails_version version}
|
|
|
|
|
|
|
|
puts "Checking out rails_xss. Please wait."
|
|
|
|
system("git clone git://github.com/NZKoz/rails_xss.git test/plugins/rails_xss")
|
|
|
|
test_rails_version(rails_versions.find {|s| s =~ /^v2\.3/})
|
2009-02-10 04:39:18 -05:00
|
|
|
ensure
|
|
|
|
`rm -rf test/rails`
|
2010-03-02 18:50:42 -05:00
|
|
|
`rm -rf test/plugins`
|
2009-02-10 04:39:18 -05:00
|
|
|
end
|
|
|
|
end
|
2009-02-24 22:55:06 -05:00
|
|
|
end
|
2009-06-18 00:46:25 -04:00
|
|
|
|
|
|
|
# ----- Handling Updates -----
|
|
|
|
|
2010-03-20 06:10:02 -04:00
|
|
|
def email_on_error
|
2009-07-04 19:36:50 -04:00
|
|
|
yield
|
2010-03-20 06:10:02 -04:00
|
|
|
rescue Exception => e
|
|
|
|
IO.popen("sendmail nex342@gmail.com", "w") do |sm|
|
|
|
|
sm << "From: nex3@nex-3.com\n" <<
|
|
|
|
"To: nex342@gmail.com\n" <<
|
|
|
|
"Subject: Exception when running rake #{Rake.application.top_level_tasks.join(', ')}\n" <<
|
|
|
|
e.message << "\n\n" <<
|
|
|
|
e.backtrace.join("\n")
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
raise e if e
|
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_git_cleanup
|
|
|
|
email_on_error {yield}
|
2009-07-04 19:36:50 -04:00
|
|
|
ensure
|
|
|
|
sh %{git reset --hard HEAD}
|
|
|
|
sh %{git clean -xdf}
|
|
|
|
sh %{git checkout master}
|
|
|
|
end
|
|
|
|
|
2009-06-18 00:46:25 -04:00
|
|
|
task :handle_update do
|
2010-03-20 06:10:02 -04:00
|
|
|
email_on_error do
|
|
|
|
unless ENV["REF"] =~ %r{^refs/heads/(master|stable|(?:haml|sass)-pages)$}
|
|
|
|
puts "#{'=' * 20} Ignoring rake handle_update REF=#{ENV["REF"].inspect}"
|
|
|
|
next
|
|
|
|
end
|
|
|
|
branch = $1
|
|
|
|
|
|
|
|
puts
|
|
|
|
puts
|
|
|
|
puts '=' * 150
|
|
|
|
puts "Running rake handle_update REF=#{ENV["REF"].inspect}"
|
|
|
|
|
|
|
|
sh %{git fetch origin}
|
|
|
|
sh %{git checkout stable}
|
|
|
|
sh %{git reset --hard origin/stable}
|
|
|
|
sh %{git checkout master}
|
|
|
|
sh %{git reset --hard origin/master}
|
|
|
|
|
|
|
|
if branch == "master"
|
|
|
|
sh %{rake release_edge --trace}
|
|
|
|
elsif branch == "stable"
|
|
|
|
sh %{rake pages --trace PROJ=haml}
|
|
|
|
sh %{rake pages --trace PROJ=sass}
|
|
|
|
elsif branch =~ /^(haml|sass)-pages$/
|
|
|
|
sh %{rake pages --trace PROJ=#{$1}}
|
|
|
|
end
|
2009-06-25 03:51:23 -04:00
|
|
|
|
2010-03-20 06:10:02 -04:00
|
|
|
puts 'Done running handle_update'
|
|
|
|
puts '=' * 150
|
2009-06-18 00:46:25 -04:00
|
|
|
end
|
|
|
|
end
|