pigeon 0.9.1 → 0.9.2

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/pigeon/task.rb +1 -1
  3. data/pigeon.gemspec +3 -3
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.1
1
+ 0.9.2
@@ -88,7 +88,7 @@ class Pigeon::Task
88
88
  end
89
89
 
90
90
  def <=>(task)
91
- self.priority <=> task.priority
91
+ self.priority.to_i <=> task.priority.to_i
92
92
  end
93
93
 
94
94
  protected
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "pigeon"
8
- s.version = "0.9.1"
8
+ s.version = "0.9.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["tadman"]
12
- s.date = "2013-02-26"
12
+ s.date = "2013-04-26"
13
13
  s.description = "Pigeon is a simple way to get started building an EventMachine engine that's intended to run as a background job."
14
14
  s.email = "github@tadman.ca"
15
15
  s.extra_rdoc_files = [
@@ -52,7 +52,7 @@ Gem::Specification.new do |s|
52
52
  ]
53
53
  s.homepage = "http://github.com/twg/pigeon"
54
54
  s.require_paths = ["lib"]
55
- s.rubygems_version = "1.8.23"
55
+ s.rubygems_version = "1.8.25"
56
56
  s.summary = "Simple daemonized EventMachine engine framework with plug-in support"
57
57
 
58
58
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pigeon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-26 00:00:00.000000000 Z
12
+ date: 2013-04-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: eventmachine
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  version: '0'
89
89
  requirements: []
90
90
  rubyforge_project:
91
- rubygems_version: 1.8.23
91
+ rubygems_version: 1.8.25
92
92
  signing_key:
93
93
  specification_version: 3
94
94
  summary: Simple daemonized EventMachine engine framework with plug-in support