forked from berkshelf/ridley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thorfile
53 lines (42 loc) · 1.22 KB
/
Thorfile
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
44
45
46
47
48
49
50
51
52
53
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'bundler'
require 'bundler/setup'
require 'buff/ruby_engine'
require 'ridley'
class Default < Thor
extend Buff::RubyEngine
unless jruby?
require 'thor/rake_compat'
include Thor::RakeCompat
Bundler::GemHelper.install_tasks
desc "build", "Build ridley-#{Ridley::VERSION}.gem into the pkg directory"
def build
Rake::Task["build"].execute
end
desc "install", "Build and install ridley-#{Ridley::VERSION}.gem into system gems"
def install
Rake::Task["install"].execute
end
desc "release", "Create tag v#{Ridley::VERSION} and build and push ridley-#{Ridley::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
desc "unit", "run only unit tests"
def unit
exec "rspec --color --format=documentation spec --tag ~type:acceptance"
end
desc "acceptance", "run only acceptance tests"
def acceptance
exec "rspec --color --format=documentation spec --tag type:acceptance"
end
end
end