13 lines
217 B
Ruby
13 lines
217 B
Ruby
|
require 'bundler/gem_helper'
|
||
|
|
||
|
# Change to the directory of this file.
|
||
|
Dir.chdir(File.expand_path("../", __FILE__))
|
||
|
|
||
|
namespace :gem do
|
||
|
Bundler::GemHelper.install_tasks
|
||
|
end
|
||
|
|
||
|
task :test do
|
||
|
sh 'bash test/test.sh'
|
||
|
end
|