mirror of
https://github.com/rubyjs/therubyrhino
synced 2023-03-27 23:21:34 -04:00
11 lines
179 B
Ruby
11 lines
179 B
Ruby
require 'bundler/setup'
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
for file in Dir['tasks/*.rake']
|
|
load file
|
|
end
|
|
|
|
desc "remove all build artifacts"
|
|
task :clean do
|
|
sh "rm -rf pkg/"
|
|
end
|