Sha256: 87be3058563d4bb56de309d245a63dfc36c4df8174af32553e4b33cdc55a63a0
Contents?: true
Size: 1.32 KB
Versions: 6
Compression:
Stored size: 1.32 KB
Contents
# encoding: utf-8 $:.push File.expand_path("../lib", __FILE__) require 'bundler' require 'bundler/setup' require 'thor/rake_compat' require 'berkshelf/vagrant' class Default < Thor class Gem < Thor include Thor::RakeCompat Bundler::GemHelper.install_tasks namespace :gem desc "build", "Build berkshelf-vagrant-#{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 berkshelf-vagrant-#{Berkshelf::Vagrant::VERSION}.gem to Rubygems" def release Rake::Task["release"].execute end desc "install", "Build and install berkshelf-vagrant-#{Berkshelf::Vagrant::VERSION}.gem into system gems" def install Rake::Task["install"].execute end 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
Version data entries
6 entries across 6 versions & 1 rubygems