jeffkreeftmeijer-delayed_job 0.1.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.textile +1 -1
- data/Rakefile +15 -15
- data/VERSION +1 -1
- data/{jkreeftmeijer-delayed_job.gemspec → jeffkreeftmeijer-delayed_job.gemspec} +5 -6
- metadata +4 -5
- data/delayed_job.gemspec +0 -41
data/README.textile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
h1. Delayed::Job
|
2
2
|
|
3
|
-
Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background.
|
3
|
+
Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background.
|
4
4
|
|
5
5
|
It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks. Amongst those tasks are:
|
6
6
|
|
data/Rakefile
CHANGED
@@ -2,6 +2,20 @@ require 'rake'
|
|
2
2
|
require 'tasks/tasks'
|
3
3
|
require 'spec/rake/spectask'
|
4
4
|
|
5
|
+
begin
|
6
|
+
require 'jeweler'
|
7
|
+
Jeweler::Tasks.new do |gemspec|
|
8
|
+
gemspec.name = "jeffkreeftmeijer-delayed_job"
|
9
|
+
gemspec.summary = "Database-backed asynchronous priority queue system -- With MongoMapper support"
|
10
|
+
gemspec.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. This is a fork of Zachary Belzer's fork of Tobias Lütke's DelayedJob."
|
11
|
+
gemspec.email = "jeff@kreeftmeijer.nl"
|
12
|
+
gemspec.homepage = "http://github.com/jeffkreeftmeijer/delayed_job"
|
13
|
+
gemspec.authors = ["Tobias Lütke", "Zachary Belzer", "Jeff Kreeftmeijer"]
|
14
|
+
end
|
15
|
+
rescue LoadError
|
16
|
+
puts "Jeweler not available. Install it with: sudo gem install jeweler"
|
17
|
+
end
|
18
|
+
|
5
19
|
task :default => :spec
|
6
20
|
|
7
21
|
Spec::Rake::SpecTask.new(:spec => ['spec:active_record', 'spec:mongo'])
|
@@ -17,19 +31,5 @@ namespace :spec do
|
|
17
31
|
t.spec_files = FileList['spec/setup/mongo.rb', 'spec/*_spec.rb']
|
18
32
|
end
|
19
33
|
end
|
20
|
-
|
21
|
-
begin
|
22
|
-
require 'jeweler'
|
23
|
-
Jeweler::Tasks.new do |gemspec|
|
24
|
-
gemspec.name = "jeffkreeftmeijer-delayed_job"
|
25
|
-
gemspec.summary = "Database backed asynchronous priority queue with support for MongoMapper and ActiveRecord"
|
26
|
-
gemspec.description = "A fork of Zachary Belzer's fork (which added MongoMapper support) of Tobias Lütke's DelayedJob. Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background."
|
27
|
-
gemspec.email = "jeff@kreeftmeijer.nl"
|
28
|
-
gemspec.homepage = "http://github.com/jeffkreeftmeijer/delayed_job"
|
29
|
-
gemspec.authors = ["Tobias Lütke", "Zachary Belzer", "Jeff Kreeftmeijer"]
|
30
|
-
end
|
31
|
-
rescue LoadError
|
32
|
-
puts "Jeweler not available. Install it with: sudo gem install jeweler"
|
33
|
-
end
|
34
|
-
|
34
|
+
|
35
35
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1.7.0
|
@@ -4,13 +4,13 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{
|
8
|
-
s.version = "
|
7
|
+
s.name = %q{jeffkreeftmeijer-delayed_job}
|
8
|
+
s.version = "1.7.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Tobias L\303\274tke", "Zachary Belzer", "Jeff Kreeftmeijer"]
|
12
12
|
s.date = %q{2009-12-19}
|
13
|
-
s.description = %q{
|
13
|
+
s.description = %q{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. This is a fork of Zachary Belzer's fork of Tobias Lütke's DelayedJob.}
|
14
14
|
s.email = %q{jeff@kreeftmeijer.nl}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"README.textile"
|
@@ -21,9 +21,8 @@ Gem::Specification.new do |s|
|
|
21
21
|
"README.textile",
|
22
22
|
"Rakefile",
|
23
23
|
"VERSION",
|
24
|
-
"delayed_job.gemspec",
|
25
24
|
"init.rb",
|
26
|
-
"
|
25
|
+
"jeffkreeftmeijer-delayed_job.gemspec",
|
27
26
|
"lib/delayed/job.rb",
|
28
27
|
"lib/delayed/job/active_record_job.rb",
|
29
28
|
"lib/delayed/job/mongo_job.rb",
|
@@ -43,7 +42,7 @@ Gem::Specification.new do |s|
|
|
43
42
|
s.rdoc_options = ["--charset=UTF-8"]
|
44
43
|
s.require_paths = ["lib"]
|
45
44
|
s.rubygems_version = %q{1.3.5}
|
46
|
-
s.summary = %q{Database
|
45
|
+
s.summary = %q{Database-backed asynchronous priority queue system -- With MongoMapper support}
|
47
46
|
s.test_files = [
|
48
47
|
"spec/delayed_method_spec.rb",
|
49
48
|
"spec/job_spec.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jeffkreeftmeijer-delayed_job
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Tobias L\xC3\xBCtke"
|
@@ -15,7 +15,7 @@ date: 2009-12-19 00:00:00 +01:00
|
|
15
15
|
default_executable:
|
16
16
|
dependencies: []
|
17
17
|
|
18
|
-
description: "
|
18
|
+
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. This is a fork of Zachary Belzer's fork of Tobias L\xC3\xBCtke's DelayedJob."
|
19
19
|
email: jeff@kreeftmeijer.nl
|
20
20
|
executables: []
|
21
21
|
|
@@ -29,9 +29,8 @@ files:
|
|
29
29
|
- README.textile
|
30
30
|
- Rakefile
|
31
31
|
- VERSION
|
32
|
-
- delayed_job.gemspec
|
33
32
|
- init.rb
|
34
|
-
-
|
33
|
+
- jeffkreeftmeijer-delayed_job.gemspec
|
35
34
|
- lib/delayed/job.rb
|
36
35
|
- lib/delayed/job/active_record_job.rb
|
37
36
|
- lib/delayed/job/mongo_job.rb
|
@@ -73,7 +72,7 @@ rubyforge_project:
|
|
73
72
|
rubygems_version: 1.3.5
|
74
73
|
signing_key:
|
75
74
|
specification_version: 3
|
76
|
-
summary: Database
|
75
|
+
summary: Database-backed asynchronous priority queue system -- With MongoMapper support
|
77
76
|
test_files:
|
78
77
|
- spec/delayed_method_spec.rb
|
79
78
|
- spec/job_spec.rb
|
data/delayed_job.gemspec
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
#version = File.read('README.textile').scan(/^\*\s+([\d\.]+)/).flatten
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = "delayed_job"
|
5
|
-
s.version = "1.7.0"
|
6
|
-
s.date = "2008-11-28"
|
7
|
-
s.summary = "Database-backed asynchronous priority queue system -- Extracted from Shopify"
|
8
|
-
s.email = "tobi@leetsoft.com"
|
9
|
-
s.homepage = "http://github.com/tobi/delayed_job/tree/master"
|
10
|
-
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."
|
11
|
-
s.authors = ["Tobias Lütke"]
|
12
|
-
|
13
|
-
# s.bindir = "bin"
|
14
|
-
# s.executables = ["delayed_job"]
|
15
|
-
# s.default_executable = "delayed_job"
|
16
|
-
|
17
|
-
s.has_rdoc = false
|
18
|
-
s.rdoc_options = ["--main", "README.textile"]
|
19
|
-
s.extra_rdoc_files = ["README.textile"]
|
20
|
-
|
21
|
-
# run git ls-files to get an updated list
|
22
|
-
s.files = %w[
|
23
|
-
MIT-LICENSE
|
24
|
-
README.textile
|
25
|
-
delayed_job.gemspec
|
26
|
-
init.rb
|
27
|
-
lib/delayed/job.rb
|
28
|
-
lib/delayed/message_sending.rb
|
29
|
-
lib/delayed/performable_method.rb
|
30
|
-
lib/delayed/worker.rb
|
31
|
-
lib/delayed_job.rb
|
32
|
-
tasks/jobs.rake
|
33
|
-
tasks/tasks.rb
|
34
|
-
]
|
35
|
-
s.test_files = %w[
|
36
|
-
spec/database.rb
|
37
|
-
spec/delayed_method_spec.rb
|
38
|
-
spec/job_spec.rb
|
39
|
-
spec/story_spec.rb
|
40
|
-
]
|
41
|
-
end
|