1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/Rakefile
2015-10-24 20:32:19 +09:00

13 lines
268 B
Ruby

require 'bundler/gem_tasks'
require 'rake/testtask'
task default: :test
Rake::TestTask.new do |t|
t.libs << 'lib' << 'test'
files = Dir['test/*_test.rb']
files << 'test/haml-spec/hamlit_test.rb'
t.test_files = files
t.warning = true
t.verbose = true
end