forked from collectiveidea/delayed_job
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelayed_job.gemspec
26 lines (22 loc) · 1.3 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'delayed_job'
s.version = '2.1.0.pre2'
s.authors = ["Brandon Keepers", "Tobias L\303\274tke"]
s.summary = 'Database-backed asynchronous priority queue system -- Extracted from Shopify'
s.description = "Delayed_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.
This gem is collectiveidea's fork (http://github.com/collectiveidea/delayed_job)."
s.email = '[email protected]'
s.extra_rdoc_files = 'README.textile'
s.files = Dir.glob('{contrib,lib,recipes,spec}/**/*') +
%w(MIT-LICENSE README.textile)
s.homepage = 'http://github.com/collectiveidea/delayed_job'
s.rdoc_options = ["--main", "README.textile", "--inline-source", "--line-numbers"]
s.require_paths = ["lib"]
s.test_files = Dir.glob('spec/**/*')
s.add_runtime_dependency 'daemons'
s.add_runtime_dependency 'activesupport', '~>3.0'
s.add_development_dependency 'rspec'
s.add_development_dependency 'sqlite3-ruby'
s.add_development_dependency 'activerecord'
end