mirror of
https://github.com/rspec/rspec-metagem.git
synced 2022-11-09 12:09:29 -05:00
16 lines
223 B
Ruby
16 lines
223 B
Ruby
require "bundler"
|
|
Bundler.setup
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
require 'rake'
|
|
require 'fileutils'
|
|
require 'pathname'
|
|
|
|
task :clobber do
|
|
rm_rf 'pkg'
|
|
end
|
|
|
|
task :default do
|
|
puts "Nothing to do for the default task"
|
|
end
|
|
|