torqbox 0.1.0-java → 0.1.1-java
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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/rack/handler/torqbox.rb +3 -0
- data/lib/torqbox/server.rb +1 -2
- data/lib/torqbox/version.rb +1 -1
- data/lib/{wunderboss-all.jar → wunderboss-rack.jar} +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95b09b97969916e5fd407377ed4f553bcf0a1397
|
4
|
+
data.tar.gz: 1e732b0a6ae9e5d9a81657ab0b9df107e08125ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 852ee9c49f019fc2ed0d55cee3ac90184ce4fddf365362afe7f7a6e25087bcfb1fa0b8e1deeecc280892e76f0d83b6a919e16bec79ef6c0a39cc8e877837bbf7
|
7
|
+
data.tar.gz: bb3dbba79bc53b6cbd8a0fe7bb0d7d87043b82d32f3dcf2877cd419120cbfcc9fc817a0aeb8102c3793af8d230a1994d09e6f029e0f83ed113a41dd6c4dfe85b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 0.1.1
|
2
|
+
|
3
|
+
* Fix an issue that prevented `rails s torqbox` from working because
|
4
|
+
Rails thought the server stopped immediately after starting
|
5
|
+
|
6
|
+
* wunderboss-all.jar renamed to wunderboss-rack.jar, updated to commit
|
7
|
+
498d5badcaefffa19e0c529caa62c490497f3079 which improves overall
|
8
|
+
throughput by rewriting our Rack implementation from a Servlet
|
9
|
+
adapter to an Undertow HttpHandler
|
10
|
+
|
1
11
|
## 0.1.0
|
2
12
|
|
3
13
|
* Initial release
|
data/lib/rack/handler/torqbox.rb
CHANGED
data/lib/torqbox/server.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
16
16
|
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
17
17
|
|
18
|
-
require 'wunderboss-
|
18
|
+
require 'wunderboss-rack.jar'
|
19
19
|
|
20
20
|
module TorqBox
|
21
21
|
class Server
|
@@ -38,7 +38,6 @@ module TorqBox
|
|
38
38
|
@container.log_level = options[:log_level]
|
39
39
|
@container.register_language('ruby', Java::OrgProjectoddWunderbossRuby::RubyLanguage.new)
|
40
40
|
@container.register_component('web', Java::OrgProjectoddWunderbossWeb::WebComponent.new)
|
41
|
-
@container.register_component('servlet', Java::OrgProjectoddWunderbossWeb::ServletComponent.new)
|
42
41
|
@container.register_component('rack', Java::OrgProjectoddWunderbossRubyRack::RackComponent.new)
|
43
42
|
@container.configure('web', 'host' => options[:host], 'port' => options[:port].to_s)
|
44
43
|
@logger = @container.get_logger('TorqBox::Server')
|
data/lib/torqbox/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: torqbox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- The TorqueBox Team
|
@@ -69,8 +69,8 @@ files:
|
|
69
69
|
- README.md
|
70
70
|
- LICENSE
|
71
71
|
- bin/torqbox
|
72
|
-
- lib/wunderboss-all.jar
|
73
72
|
- lib/torqbox.rb
|
73
|
+
- lib/wunderboss-rack.jar
|
74
74
|
- lib/rack/handler/torqbox.rb
|
75
75
|
- lib/torqbox/cli.rb
|
76
76
|
- lib/torqbox/server.rb
|