forked from oliverguenther/gitolite-rugged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
59 lines (44 loc) · 1.15 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
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rake'
require 'rspec/core/rake_task'
require 'rdoc/task'
## Helper Functions
def name
@name ||= Dir['*.gemspec'].first.split('.').first
end
def version
line = File.read("lib/#{name}/version.rb")[/^\s*VERSION\s*=\s*.*/]
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
end
## RDoc Task
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "#{name} #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
## Other Tasks
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -r ./lib/#{name}.rb"
end
desc "Show library version"
task :version do
puts "#{name} #{version}"
end
desc "Start unit tests"
task :test => :default
task :default do
RSpec::Core::RakeTask.new(:spec) do |config|
config.rspec_opts = "--color --format nested --fail-fast"
end
Rake::Task["spec"].invoke
end
desc "Start unit tests in JUnit format"
task :test_junit do
RSpec::Core::RakeTask.new(:spec) do |config|
config.rspec_opts = "--format RspecJunitFormatter --out junit/rspec.xml"
end
Rake::Task["spec"].invoke
end