public
Description: scheduler for Ruby (at, in, cron and every jobs)
Homepage: http://rufus.rubyforge.org/rufus-scheduler/
Clone URL: git://github.com/jmettraux/rufus-scheduler.git
rufus-scheduler / rufus-scheduler.gemspec
100644 33 lines (24 sloc) 0.906 kb
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
Gem::Specification.new do |s|
 
  s.name = 'rufus-scheduler'
  s.version = '2.0.3'
  s.authors = [ 'John Mettraux' ]
  s.email = 'jmettraux@gmail.com'
  s.homepage = 'http://github.com/jmettraux/rufus-scheduler'
  s.platform = Gem::Platform::RUBY
  s.summary = 'job scheduler for Ruby (at, cron, in and every jobs)'
 
  s.description = %{
job scheduler for Ruby (at, cron, in and every jobs).
 
By default uses a Ruby thread, if EventMachine is present, it will rely on it.
}
 
  s.require_path = 'lib'
  s.test_file = 'spec/spec.rb'
  s.has_rdoc = true
  s.extra_rdoc_files = %w{ README.rdoc CHANGELOG.txt CREDITS.txt LICENSE.txt }
  s.rubyforge_project = 'rufus'
 
  #%w{ eventmachine }.each do |d|
  # s.requirements << d
  # s.add_dependency(d)
  #end
 
  #s.files = Dir['lib/**/*.rb'] + Dir['*.txt'] - [ 'lib/tokyotyrant.rb' ]
  s.files = Dir['lib/**/*.rb'] + Dir['*.txt'] + Dir['*.rdoc']
end