mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
106 lines
2.5 KiB
Ruby
106 lines
2.5 KiB
Ruby
require 'bundler/setup'
|
|
require 'bundler/gem_tasks'
|
|
|
|
#
|
|
# Prepend DevKit into compilation phase
|
|
#
|
|
if Gem.win_platform?
|
|
desc 'Activates DevKit'
|
|
task :devkit do
|
|
begin
|
|
require 'devkit'
|
|
rescue LoadError
|
|
abort 'Failed to load DevKit required for compilation'
|
|
end
|
|
end
|
|
task compile: :devkit
|
|
end
|
|
|
|
require 'rake/testtask'
|
|
require 'rake/extensiontask'
|
|
|
|
Dir['benchmark/*.rake'].each { |b| import(b) }
|
|
|
|
namespace :haml do
|
|
Rake::TestTask.new do |t|
|
|
t.libs << 'lib' << 'test'
|
|
files = Dir['test/haml/*_test.rb']
|
|
files << 'test/haml/haml-spec/*_test.rb'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = files
|
|
t.verbose = true
|
|
end
|
|
end
|
|
|
|
namespace :hamlit do
|
|
Rake::TestTask.new do |t|
|
|
t.libs << 'lib' << 'test'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = Dir['test/hamlit/**/*_test.rb']
|
|
t.verbose = true
|
|
end
|
|
end
|
|
|
|
namespace :test do
|
|
Rake::TestTask.new(:all) do |t|
|
|
t.libs << 'lib' << 'test'
|
|
files = Dir['test/hamlit/**/*_test.rb']
|
|
files += Dir['test/haml/*_test.rb']
|
|
files << 'test/haml/haml-spec/*_test.rb'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = files
|
|
t.verbose = true
|
|
end
|
|
|
|
Rake::TestTask.new(:spec) do |t|
|
|
t.libs << 'lib' << 'test'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = %w[test/haml/haml-spec/ugly_test.rb test/haml/haml-spec/pretty_test.rb]
|
|
t.verbose = true
|
|
end
|
|
|
|
Rake::TestTask.new(:engine) do |t|
|
|
t.libs << 'lib' << 'test'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = %w[test/haml/engine_test.rb]
|
|
t.verbose = true
|
|
end
|
|
|
|
Rake::TestTask.new(:filters) do |t|
|
|
t.libs << 'lib' << 'test'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = %w[test/haml/filters_test.rb]
|
|
t.verbose = true
|
|
end
|
|
|
|
Rake::TestTask.new(:helper) do |t|
|
|
t.libs << 'lib' << 'test'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = %w[test/haml/helper_test.rb]
|
|
t.verbose = true
|
|
end
|
|
|
|
Rake::TestTask.new(:template) do |t|
|
|
t.libs << 'lib' << 'test'
|
|
t.ruby_opts = %w[-rtest_helper]
|
|
t.test_files = %w[test/haml/template_test.rb]
|
|
t.verbose = true
|
|
end
|
|
end
|
|
|
|
Rake::ExtensionTask.new(:hamlit) do |ext|
|
|
ext.lib_dir = 'lib/hamlit'
|
|
end
|
|
|
|
desc 'bench task for CI'
|
|
task bench: :compile do
|
|
if ENV['SLIM_BENCH'] == '1'
|
|
cmd = %w[bundle exec ruby benchmark/slim/run-benchmarks.rb]
|
|
else
|
|
cmd = ['bin/bench', 'bench', ('-c' if ENV['COMPILE'] == '1'), *ENV['TEMPLATE'].split(',')].compact
|
|
end
|
|
exit system(*cmd)
|
|
end
|
|
|
|
task default: %w[compile hamlit:test]
|
|
task test: %w[compile test:all]
|