jubilee 1.0.0 → 1.0.1
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.
- checksums.yaml +7 -0
- data/.ruby-version +1 -1
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/jubilee/cli.rb +6 -0
- data/lib/jubilee/response.rb +1 -0
- data/lib/jubilee/version.rb +1 -1
- metadata +5 -16
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 296e73f0a259d4c145d026849a0a3b8402ee24d7
|
|
4
|
+
data.tar.gz: 0971d99b52d0cf7bc176db8cccce96a9fe624f28
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: d608d935bd4a8345589c47281ba07d37335e5076ff559f10a2ddd10ffe8b32d5004facddaad708b2ea2bb56b718bba07a8f109fed61b28f1adb73356ed726a50
|
|
7
|
+
data.tar.gz: 38d0dd9d08d690854fb4bd6580996ff1aa83daa84f9486587410d071654ab81486cc979c67615cc6f87e18ac1adf8fb67bf6372a6cd6ee966fc5fa14e19f084e
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
jruby-1.7.
|
|
1
|
+
jruby-1.7.8
|
data/README.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/lib/jubilee/cli.rb
CHANGED
|
@@ -86,6 +86,12 @@ module Jubilee
|
|
|
86
86
|
o.on "--cluster", "Enable clustering" do
|
|
87
87
|
@options[:cluster_host] = "0.0.0.0"
|
|
88
88
|
end
|
|
89
|
+
o.on "--cluster-port", "If the cluster option has also been specified then this determines which port will be used for cluster communication with other Vert.x instances. Default is 0 -which means 'chose a free ephemeral port. You don't usually need to specify this parameter unless you really need to bind to a specific port." do |port|
|
|
90
|
+
@options[:cluster_host] = port
|
|
91
|
+
end
|
|
92
|
+
o.on "--cluster-host", "If the cluster option has also been specified then this determines which host address will be used for cluster communication with other Vert.x instances. By default it will try and pick one from the available interfaces. If you have more than one interface and you want to use a specific one, specify it here." do |host|
|
|
93
|
+
@options[:cluster_host] = host
|
|
94
|
+
end
|
|
89
95
|
|
|
90
96
|
o.separator ""
|
|
91
97
|
o.separator "Common options:"
|
data/lib/jubilee/response.rb
CHANGED
data/lib/jubilee/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jubilee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
version: 1.0.0
|
|
4
|
+
version: 1.0.1
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Isaiah Peng
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-12-15 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rack
|
|
@@ -18,13 +17,11 @@ dependencies:
|
|
|
18
17
|
- - '>='
|
|
19
18
|
- !ruby/object:Gem::Version
|
|
20
19
|
version: 1.4.1
|
|
21
|
-
none: false
|
|
22
20
|
requirement: !ruby/object:Gem::Requirement
|
|
23
21
|
requirements:
|
|
24
22
|
- - '>='
|
|
25
23
|
- !ruby/object:Gem::Version
|
|
26
24
|
version: 1.4.1
|
|
27
|
-
none: false
|
|
28
25
|
prerelease: false
|
|
29
26
|
type: :runtime
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -34,13 +31,11 @@ dependencies:
|
|
|
34
31
|
- - ~>
|
|
35
32
|
- !ruby/object:Gem::Version
|
|
36
33
|
version: 0.0.4
|
|
37
|
-
none: false
|
|
38
34
|
requirement: !ruby/object:Gem::Requirement
|
|
39
35
|
requirements:
|
|
40
36
|
- - ~>
|
|
41
37
|
- !ruby/object:Gem::Version
|
|
42
38
|
version: 0.0.4
|
|
43
|
-
none: false
|
|
44
39
|
prerelease: false
|
|
45
40
|
type: :runtime
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
@@ -50,13 +45,11 @@ dependencies:
|
|
|
50
45
|
- - '>='
|
|
51
46
|
- !ruby/object:Gem::Version
|
|
52
47
|
version: '0'
|
|
53
|
-
none: false
|
|
54
48
|
requirement: !ruby/object:Gem::Requirement
|
|
55
49
|
requirements:
|
|
56
50
|
- - '>='
|
|
57
51
|
- !ruby/object:Gem::Version
|
|
58
52
|
version: '0'
|
|
59
|
-
none: false
|
|
60
53
|
prerelease: false
|
|
61
54
|
type: :development
|
|
62
55
|
description: Jubilee is a experimental webserver built for speed, it's based on Vertx.
|
|
@@ -147,6 +140,7 @@ files:
|
|
|
147
140
|
homepage: http://github.com/isaiah/jubilee
|
|
148
141
|
licenses:
|
|
149
142
|
- MIT
|
|
143
|
+
metadata: {}
|
|
150
144
|
post_install_message:
|
|
151
145
|
rdoc_options: []
|
|
152
146
|
require_paths:
|
|
@@ -156,20 +150,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
156
150
|
- - '>='
|
|
157
151
|
- !ruby/object:Gem::Version
|
|
158
152
|
version: '0'
|
|
159
|
-
segments:
|
|
160
|
-
- 0
|
|
161
|
-
hash: 2
|
|
162
|
-
none: false
|
|
163
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
154
|
requirements:
|
|
165
155
|
- - '>='
|
|
166
156
|
- !ruby/object:Gem::Version
|
|
167
157
|
version: '0'
|
|
168
|
-
none: false
|
|
169
158
|
requirements: []
|
|
170
159
|
rubyforge_project:
|
|
171
|
-
rubygems_version: 1.
|
|
160
|
+
rubygems_version: 2.1.9
|
|
172
161
|
signing_key:
|
|
173
|
-
specification_version:
|
|
162
|
+
specification_version: 4
|
|
174
163
|
summary: More than a server for rack applications.
|
|
175
164
|
test_files: []
|