-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
32 lines (27 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
%w[rubygems rake rake/clean fileutils hoe newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/qer'
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.spec('qer') do |p|
p.developer('Josh Kleinpeter', 'josh@kleinpeter.org')
p.developer('Coby Randquist', 'randquistcp@gmail.com')
p.developer('Jacob Dunphy', 'jacob.dunphy@gmail.com')
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
p.rubyforge_name = p.name
p.description = "Qer is an easy command-line todo list."
p.summary = "Just type `qer --help` to get started."
p.extra_dev_deps = [
['shoulda','= 2.10.1'],
['newgem', ">= #{::Newgem::VERSION}"]
]
p.clean_globs |= %w[**/.DS_Store tmp *.log]
path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
p.rsync_args = '-av --delete --ignore-errors'
end
require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }
task :default => [:spec]
task :rcov do
system("rcov -t -x '/.*shoulda.*/|/.*rcov.*/' test/test_qer.rb")
end