9 lines
186 B
Ruby
9 lines
186 B
Ruby
|
#!/usr/bin/env rake
|
||
|
begin
|
||
|
require 'bundler/setup'
|
||
|
rescue LoadError
|
||
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
||
|
end
|
||
|
|
||
|
Bundler::GemHelper.install_tasks
|