Sha256: 17593c847ed8b983471c742965b363877445959af278836869bc0f3971da38e8
Contents?: true
Size: 357 Bytes
Versions: 8
Compression:
Stored size: 357 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks namespace :box do desc 'Adds test vagrant box.' task :add do sh 'bundle exec vagrant box add --name vultr ./box/vultr.box' end desc 'Removes testing vagrant box.' task :remove do sh 'bundle exec vagrant box remove vultr' end end require 'cucumber/rake/task' Cucumber::Rake::Task.new
Version data entries
8 entries across 8 versions & 3 rubygems