Rakefile 197 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 if !File.exist?('.ssh_config') sh "vagrant ssh-config > .ssh_config" end require 'chake' task :test do Dir.glob('test/*_test.sh').each do |t| sh 'sh', t end end task :default => :test