-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
delayed_job.gemspec
43 lines (38 loc) · 1.29 KB
/
delayed_job.gemspec
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
# encoding: utf-8
#version = File.read('README.textile').scan(/^\*\s+([\d\.]+)/).flatten
Gem::Specification.new do |s|
s.name = "delayed_job"
s.version = "1.7.0"
s.date = "2008-11-28"
s.summary = "Database-backed asynchronous priority queue system -- Extracted from Shopify"
s.email = "[email protected]"
s.homepage = "http://github.com/tobi/delayed_job/tree/master"
s.description = "Delated_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background. It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks."
s.authors = ["Tobias Lütke"]
# s.bindir = "bin"
# s.executables = ["delayed_job"]
# s.default_executable = "delayed_job"
s.has_rdoc = false
s.rdoc_options = ["--main", "README.textile"]
s.extra_rdoc_files = ["README.textile"]
# run git ls-files to get an updated list
s.files = %w[
MIT-LICENSE
README.textile
delayed_job.gemspec
init.rb
lib/delayed/job.rb
lib/delayed/message_sending.rb
lib/delayed/performable_method.rb
lib/delayed/worker.rb
lib/delayed_job.rb
tasks/jobs.rake
tasks/tasks.rb
]
s.test_files = %w[
spec/database.rb
spec/delayed_method_spec.rb
spec/job_spec.rb
spec/story_spec.rb
]
end