daemonizer 0.4.10 → 0.4.11
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/ROADMAP +15 -5
- data/VERSION +1 -1
- data/daemonizer.gemspec +2 -2
- data/lib/daemonizer/dsl.rb +1 -1
- metadata +4 -4
data/ROADMAP
CHANGED
@@ -1,15 +1,25 @@
|
|
1
1
|
ROADMAP
|
2
2
|
-------
|
3
3
|
|
4
|
-
|
4
|
+
*to beta version
|
5
5
|
|
6
|
-
1.
|
6
|
+
1. Add :sub_pool to configuration. sub_pool can be defined in pool block and all of them should have the same handler. sub_pool cannot be started or stoped indepentently. This is done for better
|
7
|
+
COW-feature utilization
|
7
8
|
|
8
|
-
2.
|
9
|
+
2. Supporting different log levels
|
9
10
|
|
10
|
-
3.
|
11
|
+
3. Add ability to supply statistics in handler.
|
11
12
|
|
12
|
-
4.
|
13
|
+
4. Improve shutdown
|
13
14
|
|
15
|
+
5. Memory threshholds. Implementation of statistics. Look into god.
|
16
|
+
|
17
|
+
6. Write documentation with YARD
|
18
|
+
|
19
|
+
7. Start writing tests (rspec)
|
20
|
+
|
21
|
+
8. Support threaded model
|
22
|
+
|
23
|
+
9. Make site (daemonizer.org)
|
14
24
|
|
15
25
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.11
|
data/daemonizer.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
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.11"
|
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{2010-07-
|
12
|
+
s.date = %q{2010-07-29}
|
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}
|
data/lib/daemonizer/dsl.rb
CHANGED
@@ -16,7 +16,7 @@ class Daemonizer::Dsl
|
|
16
16
|
|
17
17
|
def set_option(option, value = nil, &block)
|
18
18
|
@options[:handler_options] ||= {}
|
19
|
-
if value
|
19
|
+
if not value.nil?
|
20
20
|
@options[:handler_options][option.to_sym] = Daemonizer::Option.new(option, value)
|
21
21
|
elsif block_given?
|
22
22
|
@options[:handler_options][option.to_sym] = Daemonizer::Option.new(option, block, true)
|
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:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 11
|
10
|
+
version: 0.4.11
|
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: 2010-07-
|
18
|
+
date: 2010-07-29 00:00:00 +04:00
|
19
19
|
default_executable: daemonizer
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|