forked from ttscoff/doing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
94 lines (84 loc) · 2.23 KB
/
Rakefile
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
require 'rake/clean'
require 'rubygems'
require 'rubygems/package_task'
require 'rdoc'
require 'rdoc/task'
require 'cucumber'
require 'cucumber/rake/task'
Rake::RDocTask.new do |rd|
rd.main = "README.md"
rd.rdoc_files.include("README.md","lib/**/*.rb","bin/**/*")
rd.title = 'doing'
rd.markup = 'markdown'
end
spec = eval(File.read('doing.gemspec'))
Gem::PackageTask.new(spec) do |pkg|
end
CUKE_RESULTS = 'results.html'
CLEAN << CUKE_RESULTS
desc 'Run features'
Cucumber::Rake::Task.new(:features) do |t|
opts = "features --format html -o #{CUKE_RESULTS} --format progress -x"
opts += " --tags #{ENV['TAGS']}" if ENV['TAGS']
t.cucumber_opts = opts
t.fork = false
end
desc 'Run features tagged as work-in-progress (@wip)'
Cucumber::Rake::Task.new('features:wip') do |t|
tag_opts = ' --tags ~@pending'
tag_opts = ' --tags @wip'
t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}"
t.fork = false
end
task :cucumber => :features
task 'cucumber:wip' => 'features:wip'
task :wip => 'features:wip'
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs << ["test", "test/helpers"]
t.test_files = FileList['test/*_test.rb']
end
desc 'Install the gem in the current ruby'
task :install, :all do |t, args|
args.with_defaults(:all => false)
if args[:all]
sh "rvm all do gem install pkg/*.gem"
sh "sudo gem install pkg/*.gem"
else
sh "gem install pkg/*.gem"
end
end
desc 'Development version check'
task :ver do |t|
system "grep VERSION lib/doing/version.rb"
end
desc 'Bump incremental version number'
task :bump, :type do |t, args|
args.with_defaults(:type => "inc")
version_file = "lib/doing/version.rb"
content = IO.read(version_file)
content.sub!(/VERSION = '(\d+)\.(\d+)\.(\d+)(\S+)?'/) {|m|
major = $1.to_i
minor = $2.to_i
inc = $3.to_i
pre = $4
case args[:type]
when /^maj/
major += 1
minor = 0
inc = 0
when /^min/
minor += 1
inc = 0
else
inc += 1
end
$stdout.puts "At version #{major}.#{minor}.#{inc}#{pre}"
"VERSION = '#{major}.#{minor}.#{inc}#{pre}'"
}
File.open(version_file, 'w+') {|f|
f.puts content
}
end
task :default => [:test,:features]
task :build => [:clobber,:rdoc,:package]