torqbox 0.1.4-java → 0.1.5-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 48bff5aacd166571c9b5e0d0e3316f73c21daad4
4
- data.tar.gz: a40524ba63d0de8a67ff11182936cc6e84d7667d
3
+ metadata.gz: e4803e7d3b10f795ed84b5862e6cfabe64d51f49
4
+ data.tar.gz: 4b724367b614a7264dde22d70a8c05188c87494d
5
5
  SHA512:
6
- metadata.gz: 1b9865580de6126e49737f67737deb1a59502d2f4eed306e767271255866d81cfbd8873d1f1508a3418de1370167a0072ee9fc41f18f0aaef635f034b8cbc241
7
- data.tar.gz: b67d1f9c836cd8926abf8707473d915993e6396b46121106e3b77ae98a34457e464eba80a5118aaa6a2ff89890836a18a3c4ce7abb125050ed7212b3b1d954b9
6
+ metadata.gz: 609143e144b5ee09fa553a9ac78f10217b932f74e34c80a1d3e80decf1308c529c9cb92726bcd343154fc8ce7714cb8c876350822e0748aab9b251c4ced926ea
7
+ data.tar.gz: f09fcf24b69aab6daf242e3b52950e75eee79d382d2c20f58f13219303f87862c5c91853d31dc9b1a68231ec87eeb7370b5564c9d6d223eed3e8a4e83e1eeb33
@@ -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 mode. The code
21
- has only been tested on JRuby 1.7.6 and higher but should work on
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
 
@@ -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 = Java::OrgProjectoddWunderboss::WunderBoss.new
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)
@@ -16,5 +16,5 @@
16
16
  # 02110-1301 USA, or see the FSF site: http://www.fsf.org.
17
17
 
18
18
  module TorqBox
19
- VERSION = '0.1.4'
19
+ VERSION = '0.1.5'
20
20
  end
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
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: 2013-11-27 00:00:00.000000000 Z
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: Prototype of the next-generation TorqueBox
101
+ summary: TorqueBox Next Generation
102
102
  test_files: []