jruby-rack 1.0.10 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,15 @@
1
+ == 1.1.1 (11/11/11)
2
+
3
+ - Support for embedding a web server using a Rack::Handler
4
+ Servlet/Filter
5
+ - Use bundler/maven for project's dependency management
6
+ - 1.9 $LOAD_PATH fix when jruby.home is set to /tmp
7
+ - Fix /config.ru resource loading on AppEngine
8
+ - Support for passing arguments to runtimes via
9
+ jruby.runtime.arguments
10
+ - JavaServletStore rewrite based upon Rack::Session::Abstract::ID
11
+ - Upgrade to Rack 1.3.5
12
+
1
13
  == 1.0.10 (08/24/11)
2
14
 
3
15
  - Bugfix release for Rails 3.1
data/README.md CHANGED
@@ -226,11 +226,14 @@ For those loggers that require a specific named logger, set it in the
226
226
 
227
227
  Checkout the JRuby Rack code and cd to that directory.
228
228
 
229
- git clone git://github.com/nicksieger/jruby-rack.git
229
+ git clone git://github.com/jruby/jruby-rack.git
230
230
  cd jruby-rack
231
231
 
232
+ Ensure you have Maven installed. It is required for downloading jar
233
+ artifacts that JRuby-Rack depends on.
234
+
232
235
  You can choose to build with either Maven or Rake. Either of the
233
- following two will suffice (but see the NOTE below).
236
+ following two will suffice.
234
237
 
235
238
  mvn install
236
239
  jruby -S rake
@@ -241,8 +244,8 @@ The generated jar should be located here: target/jruby-rack-*.jar.
241
244
 
242
245
  Please use GitHub to file bugs, patches and pull requests.
243
246
 
244
- - https://github.com/nicksieger/jruby-rack
245
- - https://github.com/nicksieger/jruby-rack/issues
247
+ - https://github.com/jruby/jruby-rack
248
+ - https://github.com/jruby/jruby-rack/issues
246
249
 
247
250
  ## Rails Step-by-step
248
251
 
Binary file
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = "1.0.10"
10
+ VERSION = "1.1.1"
11
11
  end
12
12
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.10
5
+ version: 1.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nick Sieger
@@ -10,8 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-08-25 00:00:00 -05:00
14
- default_executable:
13
+ date: 2011-11-11 00:00:00 Z
15
14
  dependencies: []
16
15
 
17
16
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
@@ -27,10 +26,9 @@ files:
27
26
  - History.txt
28
27
  - LICENSE.txt
29
28
  - README.md
30
- - lib/jruby-rack-1.0.10.jar
29
+ - lib/jruby-rack-1.1.1.jar
31
30
  - lib/jruby-rack.rb
32
31
  - lib/jruby/rack/version.rb
33
- has_rdoc: true
34
32
  homepage: http://jruby.org
35
33
  licenses: []
36
34
 
@@ -44,6 +42,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
44
42
  requirements:
45
43
  - - ">="
46
44
  - !ruby/object:Gem::Version
45
+ hash: 2
46
+ segments:
47
+ - 0
47
48
  version: "0"
48
49
  required_rubygems_version: !ruby/object:Gem::Requirement
49
50
  none: false
@@ -54,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
55
  requirements: []
55
56
 
56
57
  rubyforge_project: jruby-extras
57
- rubygems_version: 1.5.1
58
+ rubygems_version: 1.8.9
58
59
  signing_key:
59
60
  specification_version: 3
60
61
  summary: Rack adapter for JRuby and Servlet Containers
Binary file