Thorfile
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'bundler'
require 'bundler/setup'
require 'chozo'
class Default < Thor
unless jruby?
require 'thor/rake_compat'
include Thor::RakeCompat
Bundler::GemHelper.install_tasks
desc "build", "Build chozo-#{Chozo::VERSION}.gem into the pkg directory"
def build
Rake::Task["build"].execute
end
desc "install", "Build and install chozo-#{Chozo::VERSION}.gem into system gems"
def install
Rake::Task["install"].execute
end
desc "release", "Create tag v#{Chozo::VERSION} and build and push chozo-#{Chozo::VERSION}.gem to Rubygems"
def release
Rake::Task["release"].execute
end
end
class Spec < Thor
namespace :spec
default_task :all
desc "all", "run all tests"
def all
exec "rspec --color --format=documentation spec"
end
end
end