zbatery 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Documentation/zbatery.1.txt +6 -8
- data/GIT-VERSION-GEN +1 -1
- data/lib/zbatery.rb +1 -1
- data/zbatery.gemspec +5 -1
- metadata +3 -3
data/Documentation/zbatery.1.txt
CHANGED
@@ -12,10 +12,9 @@ zbatery [-c CONFIG_FILE] [-E RACK_ENV] [-D] [RACKUP_FILE]
|
|
12
12
|
|
13
13
|
# DESCRIPTION
|
14
14
|
|
15
|
-
A rackup(1)-like command to launch Rack applications using
|
16
|
-
|
17
|
-
|
18
|
-
RACKUP_FILE.
|
15
|
+
A rackup(1)-like command to launch Rack applications using Zbatery.
|
16
|
+
It is expected to be started in your application root (APP_ROOT),
|
17
|
+
but the "working_directory" directive may be used in the CONFIG_FILE.
|
19
18
|
|
20
19
|
While Zbatery takes a myriad of command-line options for
|
21
20
|
compatibility with ruby(1) and rackup(1), it is recommended to stick
|
@@ -34,10 +33,9 @@ with rackup(1) but strongly discouraged.
|
|
34
33
|
# UNICORN OPTIONS
|
35
34
|
-c, \--config-file CONFIG_FILE
|
36
35
|
: Path to the Unicorn-specific config file. The config file is
|
37
|
-
implemented as a Ruby DSL, so Ruby code may executed
|
38
|
-
|
39
|
-
|
40
|
-
directives available from the DSL.
|
36
|
+
implemented as a Ruby DSL, so Ruby code may executed.
|
37
|
+
See the RDoc/ri for the *Unicorn::Configurator* class for the full
|
38
|
+
list of directives available from the DSL.
|
41
39
|
|
42
40
|
-D, \--daemonize
|
43
41
|
: Run daemonized in the background. The process is detached from
|
data/GIT-VERSION-GEN
CHANGED
data/lib/zbatery.rb
CHANGED
data/zbatery.gemspec
CHANGED
@@ -49,7 +49,11 @@ Gem::Specification.new do |s|
|
|
49
49
|
# eventmachine
|
50
50
|
# espace-neverblock + eventmachine
|
51
51
|
# async_sinatra + sinatra + eventmachine
|
52
|
-
|
52
|
+
#
|
53
|
+
# rainbows 0.90.2 depends on unicorn 0.96.1,
|
54
|
+
# unicorn 0.96.0 and before had a memory leak
|
55
|
+
# that was only triggered in Rainbows!/Zbatery
|
56
|
+
s.add_dependency(%q<rainbows>, [">= 0.90.2", "<= 1.0.0"])
|
53
57
|
|
54
58
|
# s.licenses = %w(GPLv2 Ruby) # accessor not compatible with older RubyGems
|
55
59
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zbatery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zbatery hackers
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-02-13 00:00:00 +00:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 0.
|
23
|
+
version: 0.90.2
|
24
24
|
- - <=
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.0.0
|