1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/Rakefile
2012-04-11 14:41:45 +02:00

15 lines
299 B
Ruby

require 'java'
require 'bundler/setup'
Bundler::GemHelper.install_tasks
desc "remove all build artifacts"
task :clean do
sh "rm -rf pkg/"
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |spec|
spec.rspec_opts = ['--color', "--format documentation"]
end
task :default => :spec