# encoding: utf-8 $:.push File.expand_path("../lib", __FILE__) require 'bundler' require 'bundler/setup' require 'thor/rake_compat' require 'berkshelf/vagrant' class Default < Thor include Thor::RakeCompat Bundler::GemHelper.install_tasks desc "build", "Build vagrant-berkshelf-#{Berkshelf::Vagrant::VERSION}.gem into the pkg directory" def build Rake::Task["build"].execute end desc "release", "Create tag v#{Berkshelf::Vagrant::VERSION} and build and push vagrant-berkshelf-#{Berkshelf::Vagrant::VERSION}.gem to Rubygems" def release Rake::Task["release"].execute end desc "install", "Build and install vagrant-berkshelf-#{Berkshelf::Vagrant::VERSION}.gem into system gems" def install Rake::Task["install"].execute end class Spec < Thor include Thor::Actions namespace :spec default_task :unit desc "ci", "Run all possible tests on Travis-CI" def ci ENV['CI'] = 'true' # Travis-CI also sets this, but set it here for local testing invoke(:unit) end desc "unit", "Run unit tests" def unit unless run_unit exit 1 end end no_tasks do def run_unit(*flags) run "rspec --color --format=documentation #{flags.join(' ')} spec" end end end end