ayl-beanstalk 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/ayl-beanstalk.gemspec +4 -4
- data/lib/ayl-beanstalk/job.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37947edcf0522068d2137533538025fdd8e8c84f
|
4
|
+
data.tar.gz: 6b9a92e1562bd7d49545b2cc77b759ca0d3207c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0baf772f8d59b99faf4e45a880a32d598086b4069715e0390c87354d16b141c7894a207a1a74f56985d0f0a10870788bcb3a6d12e90104773a7fe1071e41841f
|
7
|
+
data.tar.gz: 197e0193ba0cfc63136e14f726c4e64edccb6f906f4b83640ed0483bfa634d2be5b6e4e8b0a791cb30f0942a5281c04f14d037bcb1bccc41598522a55f343cff
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
data/ayl-beanstalk.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: ayl-beanstalk 0.4.
|
5
|
+
# stub: ayl-beanstalk 0.4.1 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "ayl-beanstalk"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.1"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["j0hnds@gmail.com"]
|
14
|
-
s.date = "2015-
|
14
|
+
s.date = "2015-09-25"
|
15
15
|
s.description = "Ayl extension to provide beanstalk support for applications requiring async processing."
|
16
16
|
s.email = "j0hnds@gmail.com"
|
17
17
|
s.executables = ["ayl_beanstalk", "ayl_worker", "ayl_worker_control"]
|
@@ -51,7 +51,7 @@ Gem::Specification.new do |s|
|
|
51
51
|
]
|
52
52
|
s.homepage = "http://github.com/j0hnds/ayl-beanstalk"
|
53
53
|
s.licenses = ["MIT"]
|
54
|
-
s.rubygems_version = "2.4.
|
54
|
+
s.rubygems_version = "2.4.8"
|
55
55
|
s.summary = "Ayl extension to provide beanstalk support."
|
56
56
|
|
57
57
|
if s.respond_to? :specification_version then
|
data/lib/ayl-beanstalk/job.rb
CHANGED
@@ -27,8 +27,8 @@ class Beaneater::Job
|
|
27
27
|
def ayl_delete
|
28
28
|
delete
|
29
29
|
rescue Exception => ex
|
30
|
-
logger.error "Error deleting job: #{ex}\n#{ex.backtrace.join("\n")}"
|
31
|
-
Ayl::Mailer.instance.deliver_message("Error deleting job", ex)
|
30
|
+
logger.error "Error deleting job (#{body}): #{ex}\n#{ex.backtrace.join("\n")}"
|
31
|
+
Ayl::Mailer.instance.deliver_message("Error deleting job (#{body})", ex)
|
32
32
|
end
|
33
33
|
|
34
34
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ayl-beanstalk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- j0hnds@gmail.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ayl
|
@@ -182,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
182
182
|
version: '0'
|
183
183
|
requirements: []
|
184
184
|
rubyforge_project:
|
185
|
-
rubygems_version: 2.4.
|
185
|
+
rubygems_version: 2.4.8
|
186
186
|
signing_key:
|
187
187
|
specification_version: 4
|
188
188
|
summary: Ayl extension to provide beanstalk support.
|