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

13 lines
227 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
task :default => :spec