-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRakefile
24 lines (21 loc) · 865 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
require 'rubygems'
require 'rubygems/package_task'
spec = Gem::Specification.new do |s|
s.name = "redis-scheduler"
s.version = "0.8"
s.date = Time.now
s.email = "[email protected]"
s.authors = ["William Morgan"]
s.summary = "A basic chronological scheduler for Redis."
s.description = "A simple, production-ready chronological scheduler for Redis. It allows you to schedule items to be processed at arbitrary points in the future, and easily
retrieve only those items that are due to be processed."
s.homepage = "http://gitub.com/wmorgan/redis-scheduler"
s.files = %w(README COPYING lib/redis-scheduler.rb test/redis-scheduler.rb)
s.executables = []
s.rdoc_options = %w(-c utf8 --main README)
end
task :rdoc do |t|
sh "rm -rf doc; rdoc #{spec.rdoc_options.join(' ')} #{spec.files.join(' ')}"
end
Gem::PackageTask.new spec do
end