1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'bundler'
require 'bundler/setup'
require 'buff/ruby_engine'
require 'buff/config/version'
class Default < Thor
extend Buff::RubyEngine
unless jruby?
require 'thor/rake_compat'
include Thor::RakeCompat
Bundler::GemHelper.install_tasks
desc "build", "Build buff-config-#{Buff::Config::VERSION}.gem into the pkg directory"
def build
Rake::Task["build"].invoke
end
desc "install", "Build and install buff-config-#{Buff::Config::VERSION}.gem into system gems"
def install
Rake::Task["install"].invoke
end
desc "release", "Create tag v#{Buff::Config::VERSION} and build and push buff-config-#{Buff::Config::VERSION}.gem to Rubygems"
def release
Rake::Task["release"].invoke
end
end
class Spec < Thor
namespace :spec
default_task :unit
desc "unit", "run the project's unit tests"
def unit
exec "rspec --color --format=documentation spec"
end
end
end
|