-
Notifications
You must be signed in to change notification settings - Fork 140
/
Rakefile
49 lines (43 loc) · 1.22 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
task :build do
gemspec = Gem::Specification.load("taps.gemspec")
target = "pkg/#{gemspec.file_name}"
FileUtils.mkdir_p File.dirname(target)
Gem::Builder.new(gemspec).build
FileUtils.mv gemspec.file_name, target
end
begin
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'taps'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
rescue LoadError
puts "Rdoc is not available"
end
begin
require 'rcov/rcovtask'
Rcov::RcovTask.new do |t|
t.libs << 'spec'
t.test_files = FileList['spec/*_spec.rb']
t.verbose = true
end
rescue LoadError
puts "RCov is not available. In order to run rcov, you must: sudo gem install rcov"
end
desc "Run all specs; requires the bacon gem"
task :spec do
if `which bacon`.empty?
puts "bacon is not available. In order to run the specs, you must: sudo gem install bacon."
else
system "bacon #{File.dirname(__FILE__)}/spec/*_spec.rb"
end
end
desc "copy/paste env vars for dev testing"
task :env do
puts "export RUBYLIB='#{File.dirname(__FILE__) + '/lib'}'"
puts "export RUBYOPT='-rrubygems'"
end
task :default => :spec