torqbox 0.1.4-java → 0.1.5-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +3 -3
- data/lib/torqbox/server.rb +2 -1
- data/lib/torqbox/version.rb +1 -1
- data/lib/wunderboss-rack.jar +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4803e7d3b10f795ed84b5862e6cfabe64d51f49
|
4
|
+
data.tar.gz: 4b724367b614a7264dde22d70a8c05188c87494d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 609143e144b5ee09fa553a9ac78f10217b932f74e34c80a1d3e80decf1308c529c9cb92726bcd343154fc8ce7714cb8c876350822e0748aab9b251c4ced926ea
|
7
|
+
data.tar.gz: f09fcf24b69aab6daf242e3b52950e75eee79d382d2c20f58f13219303f87862c5c91853d31dc9b1a68231ec87eeb7370b5564c9d6d223eed3e8a4e83e1eeb33
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## 0.1.5
|
2
|
+
|
3
|
+
* Bundled wunderboss-rack commit
|
4
|
+
26ddebe347d5763f76dedeea9da62a95a78c7cb4 that lazily looks up Rack
|
5
|
+
environment values as-needed, converts Rack response headers to Java
|
6
|
+
response headers more efficiently, and simplifies the
|
7
|
+
container/application API a bit
|
8
|
+
|
1
9
|
## 0.1.4
|
2
10
|
|
3
11
|
* Bundled wunderboss-rack commit
|
data/README.md
CHANGED
@@ -17,9 +17,9 @@ prototype, we'll remove the codename and release it under the regular
|
|
17
17
|
|
18
18
|
### Requirements
|
19
19
|
|
20
|
-
TorqBox requires JRuby 1.7.x running in Ruby 1.9 or 2.0
|
21
|
-
has only been tested on JRuby 1.7.6 and higher but
|
22
|
-
earlier versions.
|
20
|
+
TorqBox requires JRuby 1.7.x running on Java 7+ in Ruby 1.9 or 2.0
|
21
|
+
mode. The code has only been tested on JRuby 1.7.6 and higher but
|
22
|
+
should work on earlier versions.
|
23
23
|
|
24
24
|
### Running directly
|
25
25
|
|
data/lib/torqbox/server.rb
CHANGED
@@ -16,6 +16,7 @@
|
|
16
16
|
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
17
17
|
|
18
18
|
require 'wunderboss-rack.jar'
|
19
|
+
require 'wunderboss'
|
19
20
|
|
20
21
|
module TorqBox
|
21
22
|
class Server
|
@@ -34,7 +35,7 @@ module TorqBox
|
|
34
35
|
|
35
36
|
def initialize(options)
|
36
37
|
options = SERVER_DEFAULT_OPTIONS.merge(options)
|
37
|
-
@container =
|
38
|
+
@container = WunderBoss.container
|
38
39
|
@container.log_level = options[:log_level]
|
39
40
|
@container.register_language('ruby', Java::OrgProjectoddWunderbossRuby::RubyLanguage.new)
|
40
41
|
@container.register_component('web', Java::OrgProjectoddWunderbossWeb::WebComponent.new)
|
data/lib/torqbox/version.rb
CHANGED
data/lib/wunderboss-rack.jar
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.5
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- The TorqueBox Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -75,7 +75,7 @@ files:
|
|
75
75
|
- lib/torqbox/cli.rb
|
76
76
|
- lib/torqbox/server.rb
|
77
77
|
- lib/torqbox/version.rb
|
78
|
-
homepage: http://torquebox.org
|
78
|
+
homepage: http://torquebox.org/torqbox
|
79
79
|
licenses:
|
80
80
|
- LGPL3
|
81
81
|
metadata: {}
|
@@ -98,5 +98,5 @@ rubyforge_project:
|
|
98
98
|
rubygems_version: 2.1.9
|
99
99
|
signing_key:
|
100
100
|
specification_version: 4
|
101
|
-
summary:
|
101
|
+
summary: TorqueBox Next Generation
|
102
102
|
test_files: []
|