forked from tamoyal/blackbook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
36 lines (31 loc) · 808 Bytes
/
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
# -*- ruby -*-
require 'rubygems'
require 'hoe'
$LOAD_PATH.unshift 'lib'
require 'blackbook'
begin
require 'rcov/rcovtask'
rescue LoadError
end
begin
Rcov::RcovTask.new do |t|
t.test_files = FileList['test/test*.rb']
t.verbose = true
#t.rcov_opts << "--exclude rcov.rb,hpricot.rb,hpricot/.*\.rb"
end
rescue NameError
end
require 'rubygems'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "blackbook"
s.summary = "TODO"
s.email = "[email protected]"
s.homepage = "http://github.com/bcardarella/blackbook"
s.description = "TODO"
s.authors = ["Rany Keddo", "Brian Cardarella"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end