-
Notifications
You must be signed in to change notification settings - Fork 169
/
Rakefile
48 lines (42 loc) · 1.54 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
$LOAD_PATH.unshift './lib'
require 'rubygems'
require 'rake'
require 'resque-status'
require 'resque/tasks'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "resque-status"
gem.version = Resque::Plugins::Status::VERSION
gem.summary = %Q{resque-status is an extension to the resque queue system that provides simple trackable jobs.}
gem.description = %Q{resque-status is an extension to the resque queue system that provides simple trackable jobs. It provides a Resque::Plugins::Status::Hash class which can set/get the statuses of jobs and a Resque::Plugins::Status class that when included provides easily trackable/killable jobs.}
gem.email = "aaron@quirkey.com"
gem.homepage = "http://github.com/quirkey/resque-status"
gem.rubyforge_project = "quirkey"
gem.authors = ["Aaron Quint"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::RubygemsDotOrgTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
begin
require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
rescue LoadError
task :rcov do
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
end
end
task :test
task :default => :test