mirror of
https://github.com/rubyjs/therubyrhino
synced 2023-03-27 23:21:34 -04:00
11 lines
203 B
Ruby
11 lines
203 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
|