1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/Rakefile

16 lines
299 B
Text
Raw Normal View History

2011-11-28 15:21:09 -06:00
require 'java'
2011-01-10 07:59:17 -06:00
require 'bundler/setup'
Bundler::GemHelper.install_tasks
2010-05-25 06:04:34 +08:00
2011-01-10 07:59:17 -06:00
desc "remove all build artifacts"
2010-08-10 12:15:04 -05:00
task :clean do
2011-01-10 07:59:17 -06:00
sh "rm -rf pkg/"
2010-08-10 12:15:04 -05:00
end
2011-11-28 15:21:09 -06:00
require 'rspec/core/rake_task'
2012-04-11 14:41:45 +02:00
RSpec::Core::RakeTask.new do |spec|
spec.rspec_opts = ['--color', "--format documentation"]
end
2012-02-15 11:45:28 +01:00
task :default => :spec