daemonizer 0.4.16 → 0.4.17
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/daemonizer.gemspec +29 -31
- metadata +8 -8
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.17
|
data/daemonizer.gemspec
CHANGED
|
@@ -1,61 +1,59 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{daemonizer}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.17"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Gleb Pomykalov"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-10-04}
|
|
13
13
|
s.default_executable = %q{daemonizer}
|
|
14
14
|
s.description = %q{Inspired by bundler and rack. Mostly built on top of Alexey Kovyrin's loops code. http://github.com/kovyrin/loops}
|
|
15
15
|
s.email = %q{glebpom@gmail.com}
|
|
16
16
|
s.executables = ["daemonizer"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
18
18
|
"LICENSE",
|
|
19
|
-
|
|
19
|
+
"README.md"
|
|
20
20
|
]
|
|
21
21
|
s.files = [
|
|
22
22
|
"LICENSE",
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
23
|
+
"README.md",
|
|
24
|
+
"ROADMAP",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"bin/daemonizer",
|
|
28
|
+
"daemonizer.gemspec",
|
|
29
|
+
"lib/daemonizer.rb",
|
|
30
|
+
"lib/daemonizer/autoload.rb",
|
|
31
|
+
"lib/daemonizer/cli.rb",
|
|
32
|
+
"lib/daemonizer/config.rb",
|
|
33
|
+
"lib/daemonizer/daemonize.rb",
|
|
34
|
+
"lib/daemonizer/dsl.rb",
|
|
35
|
+
"lib/daemonizer/engine.rb",
|
|
36
|
+
"lib/daemonizer/errors.rb",
|
|
37
|
+
"lib/daemonizer/handler.rb",
|
|
38
|
+
"lib/daemonizer/option.rb",
|
|
39
|
+
"lib/daemonizer/process_manager.rb",
|
|
40
|
+
"lib/daemonizer/stats.rb",
|
|
41
|
+
"lib/daemonizer/worker.rb",
|
|
42
|
+
"lib/daemonizer/worker_pool.rb",
|
|
43
|
+
"spec/spec.opts",
|
|
44
|
+
"spec/spec_helper.rb",
|
|
45
|
+
"spec/test_spec.rb"
|
|
46
46
|
]
|
|
47
47
|
s.homepage = %q{http://github.com/glebpom/daemonizer}
|
|
48
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
49
48
|
s.require_paths = ["lib"]
|
|
50
|
-
s.rubygems_version = %q{1.3
|
|
49
|
+
s.rubygems_version = %q{1.5.3}
|
|
51
50
|
s.summary = %q{Daemonizer allows you to easily create custom daemons on ruby. Supporting prefork model}
|
|
52
51
|
s.test_files = [
|
|
53
52
|
"spec/spec_helper.rb",
|
|
54
|
-
|
|
53
|
+
"spec/test_spec.rb"
|
|
55
54
|
]
|
|
56
55
|
|
|
57
56
|
if s.respond_to? :specification_version then
|
|
58
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
59
57
|
s.specification_version = 3
|
|
60
58
|
|
|
61
59
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daemonizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 45
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
version: 0.4.
|
|
9
|
+
- 17
|
|
10
|
+
version: 0.4.17
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Gleb Pomykalov
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2011-10-04 00:00:00 +04:00
|
|
19
19
|
default_executable: daemonizer
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -117,8 +117,8 @@ homepage: http://github.com/glebpom/daemonizer
|
|
|
117
117
|
licenses: []
|
|
118
118
|
|
|
119
119
|
post_install_message:
|
|
120
|
-
rdoc_options:
|
|
121
|
-
|
|
120
|
+
rdoc_options: []
|
|
121
|
+
|
|
122
122
|
require_paths:
|
|
123
123
|
- lib
|
|
124
124
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
142
142
|
requirements: []
|
|
143
143
|
|
|
144
144
|
rubyforge_project:
|
|
145
|
-
rubygems_version: 1.3
|
|
145
|
+
rubygems_version: 1.5.3
|
|
146
146
|
signing_key:
|
|
147
147
|
specification_version: 3
|
|
148
148
|
summary: Daemonizer allows you to easily create custom daemons on ruby. Supporting prefork model
|