pigeon 0.6.1 → 0.6.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.
- data/VERSION +1 -1
- data/lib/pigeon/engine.rb +2 -2
- data/pigeon.gemspec +5 -5
- metadata +5 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.2
|
data/lib/pigeon/engine.rb
CHANGED
@@ -194,7 +194,7 @@ class Pigeon::Engine
|
|
194
194
|
# Returns a default logger for the engine.
|
195
195
|
def self.engine_logger
|
196
196
|
@engine_logger ||= begin
|
197
|
-
f = File.open(File.expand_path(self.engine_log_name, self.log_dir), '
|
197
|
+
f = File.open(File.expand_path(self.engine_log_name, self.log_dir), 'a')
|
198
198
|
f.sync = true
|
199
199
|
|
200
200
|
Pigeon::Logger.new(f)
|
@@ -204,7 +204,7 @@ class Pigeon::Engine
|
|
204
204
|
# Returns a default logger for queries.
|
205
205
|
def self.query_logger
|
206
206
|
@query_logger ||= begin
|
207
|
-
f = File.open(File.expand_path(self.query_log_name, self.log_dir), '
|
207
|
+
f = File.open(File.expand_path(self.query_log_name, self.log_dir), 'a')
|
208
208
|
f.sync = true
|
209
209
|
|
210
210
|
Pigeon::Logger.new(f)
|
data/pigeon.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{pigeon}
|
8
|
-
s.version = "0.6.
|
8
|
+
s.version = "0.6.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = [
|
12
|
-
s.date = %q{2011-05-
|
11
|
+
s.authors = ["tadman"]
|
12
|
+
s.date = %q{2011-05-13}
|
13
13
|
s.description = %q{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 = %q{github@tadman.ca}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -51,8 +51,8 @@ Gem::Specification.new do |s|
|
|
51
51
|
"test/unit/pigeon_test.rb"
|
52
52
|
]
|
53
53
|
s.homepage = %q{http://github.com/twg/pigeon}
|
54
|
-
s.require_paths = [
|
55
|
-
s.rubygems_version = %q{1.
|
54
|
+
s.require_paths = ["lib"]
|
55
|
+
s.rubygems_version = %q{1.6.0}
|
56
56
|
s.summary = %q{Simple daemonized EventMachine engine framework with plug-in support}
|
57
57
|
s.test_files = [
|
58
58
|
"test/helper.rb",
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: pigeon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.6.
|
5
|
+
version: 0.6.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- tadman
|
@@ -10,7 +10,8 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-05-
|
13
|
+
date: 2011-05-13 00:00:00 -04:00
|
14
|
+
default_executable:
|
14
15
|
dependencies:
|
15
16
|
- !ruby/object:Gem::Dependency
|
16
17
|
name: eventmachine
|
@@ -65,6 +66,7 @@ files:
|
|
65
66
|
- test/unit/pigeon_sorted_array_test.rb
|
66
67
|
- test/unit/pigeon_task_test.rb
|
67
68
|
- test/unit/pigeon_test.rb
|
69
|
+
has_rdoc: true
|
68
70
|
homepage: http://github.com/twg/pigeon
|
69
71
|
licenses: []
|
70
72
|
|
@@ -88,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
90
|
requirements: []
|
89
91
|
|
90
92
|
rubyforge_project:
|
91
|
-
rubygems_version: 1.
|
93
|
+
rubygems_version: 1.6.0
|
92
94
|
signing_key:
|
93
95
|
specification_version: 3
|
94
96
|
summary: Simple daemonized EventMachine engine framework with plug-in support
|