delayed_job_ironmq 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE CHANGED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012, Iron.io, Inc. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are met:
5
+
6
+ * Redistributions of source code must retain the above copyright notice,
7
+ this list of conditions and the following disclaimer.
8
+ * Redistributions in binary form must reproduce the above copyright notice,
9
+ this list of conditions and the following disclaimer in the documentation
10
+ and/or other materials provided with the distribution.
11
+
12
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
13
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
14
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
15
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
16
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
17
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
18
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
19
+ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
20
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
21
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
22
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,11 @@
1
+ module Delayed
2
+ module Backend
3
+ module Ironmq
4
+ @@version = nil
5
+
6
+ def self.version
7
+ @@version ||= File.read(File.dirname(__FILE__) + '/../../../VERSION').strip
8
+ end
9
+ end
10
+ end
11
+ end
@@ -6,6 +6,7 @@ require_relative 'delayed/serialization/ironmq'
6
6
  require_relative 'delayed/backend/actions'
7
7
  require_relative 'delayed/backend/iron_mq_config'
8
8
  require_relative 'delayed/backend/worker'
9
+ require_relative 'delayed/backend/version'
9
10
  require_relative 'delayed/backend/ironmq'
10
11
 
11
12
  Delayed::Worker.backend = :ironmq
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: delayed_job_ironmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,11 +10,11 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-03-06 00:00:00.000000000Z
13
+ date: 2012-03-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: iron_mq
17
- requirement: &36672804 !ruby/object:Gem::Requirement
17
+ requirement: &70335274997560 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ! '>='
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: 1.4.0
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *36672804
25
+ version_requirements: *70335274997560
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: delayed_job
28
- requirement: &36672300 !ruby/object:Gem::Requirement
28
+ requirement: &70335274997080 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ~>
@@ -33,10 +33,10 @@ dependencies:
33
33
  version: 3.0.0
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *36672300
36
+ version_requirements: *70335274997080
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: bundler
39
- requirement: &36672000 !ruby/object:Gem::Requirement
39
+ requirement: &70335274996600 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ~>
@@ -44,10 +44,10 @@ dependencies:
44
44
  version: 1.0.0
45
45
  type: :runtime
46
46
  prerelease: false
47
- version_requirements: *36672000
47
+ version_requirements: *70335274996600
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: rspec
50
- requirement: &36671688 !ruby/object:Gem::Requirement
50
+ requirement: &70335274996120 !ruby/object:Gem::Requirement
51
51
  none: false
52
52
  requirements:
53
53
  - - ! '>='
@@ -55,10 +55,10 @@ dependencies:
55
55
  version: '2.0'
56
56
  type: :development
57
57
  prerelease: false
58
- version_requirements: *36671688
58
+ version_requirements: *70335274996120
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: jeweler
61
- requirement: &36671388 !ruby/object:Gem::Requirement
61
+ requirement: &70335278969940 !ruby/object:Gem::Requirement
62
62
  none: false
63
63
  requirements:
64
64
  - - ~>
@@ -66,7 +66,7 @@ dependencies:
66
66
  version: 1.8.3
67
67
  type: :development
68
68
  prerelease: false
69
- version_requirements: *36671388
69
+ version_requirements: *70335278969940
70
70
  description: IronMQ backend for delayed_job
71
71
  email: info@iron.io
72
72
  executables: []
@@ -81,11 +81,12 @@ files:
81
81
  - lib/delayed/backend/actions.rb
82
82
  - lib/delayed/backend/iron_mq_config.rb
83
83
  - lib/delayed/backend/ironmq.rb
84
+ - lib/delayed/backend/version.rb
84
85
  - lib/delayed/backend/worker.rb
85
86
  - lib/delayed/serialization/ironmq.rb
86
87
  - lib/delayed_job_ironmq.rb
87
88
  - spec/.gitkeep
88
- homepage: http://www.iron.io
89
+ homepage: https://github.com/thousandsofthem/delayed_job_ironmq
89
90
  licenses: []
90
91
  post_install_message:
91
92
  rdoc_options: []
@@ -99,7 +100,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
99
100
  version: '0'
100
101
  segments:
101
102
  - 0
102
- hash: -931014419
103
+ hash: -4292445370078727968
103
104
  required_rubygems_version: !ruby/object:Gem::Requirement
104
105
  none: false
105
106
  requirements:
@@ -108,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
109
  version: '0'
109
110
  requirements: []
110
111
  rubyforge_project:
111
- rubygems_version: 1.8.11
112
+ rubygems_version: 1.8.10
112
113
  signing_key:
113
114
  specification_version: 3
114
115
  summary: IronMQ backend for delayed_job