jruby-rack 1.0.5 → 1.0.6.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +10 -0
- data/LICENSE.txt +1 -1
- data/README.md +2 -0
- data/lib/{jruby-rack-1.0.5.jar → jruby-rack-1.0.6.rc1.jar} +0 -0
- data/lib/jruby-rack.rb +1 -1
- data/lib/jruby/rack/version.rb +2 -2
- metadata +6 -6
data/History.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
== 1.0.6 (01/20/11)
|
2
|
+
|
3
|
+
- Related to JRUBY-5281 and spaces in the path. Copy jruby.home fix
|
4
|
+
here also. Fixes "no such file to load" LoadErrors for lots of
|
5
|
+
cases.
|
6
|
+
- NOTE: Next release will remove this code from JRuby-Rack completely,
|
7
|
+
relying on JRuby to properly determine jruby.home.
|
8
|
+
- GH#8: Allow DefaultRackApplicationFactory to use an existing, single
|
9
|
+
runtime. (David Calavera)
|
10
|
+
|
1
11
|
== 1.0.5 (01/11/11)
|
2
12
|
|
3
13
|
- GH#6: Add context-init parameter `jruby.compat.version` which can be
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -153,6 +153,8 @@ web.xml.
|
|
153
153
|
runtime pool should be created serially in the foreground rather
|
154
154
|
than spawning background threads. For environments where creating
|
155
155
|
threads is not permitted.
|
156
|
+
- `jruby.compat.version`: Set to "1.8" or "1.9" to make JRuby run a
|
157
|
+
specific version of Ruby.
|
156
158
|
- `public.root`: Relative path to the location of your application's
|
157
159
|
static assets. Defaults to `/`.
|
158
160
|
- `gem.path`: Relative path to the bundled gem repository. Defaults to
|
Binary file
|
data/lib/jruby-rack.rb
CHANGED
data/lib/jruby/rack/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2010 Engine Yard, Inc.
|
2
|
+
# Copyright (c) 2010-2011 Engine Yard, Inc.
|
3
3
|
# Copyright (c) 2007-2009 Sun Microsystems, Inc.
|
4
4
|
# This source code is available under the MIT license.
|
5
5
|
# See the file LICENSE.txt for details.
|
@@ -7,6 +7,6 @@
|
|
7
7
|
|
8
8
|
module JRuby
|
9
9
|
module Rack
|
10
|
-
VERSION = "1.0.
|
10
|
+
VERSION = "1.0.6.rc1"
|
11
11
|
end
|
12
12
|
end
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jruby-rack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
version: 1.0.
|
4
|
+
prerelease: 6
|
5
|
+
version: 1.0.6.rc1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Nick Sieger
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-01-
|
13
|
+
date: 2011-01-25 00:00:00 -06:00
|
14
14
|
default_executable:
|
15
15
|
dependencies: []
|
16
16
|
|
@@ -27,7 +27,7 @@ files:
|
|
27
27
|
- History.txt
|
28
28
|
- LICENSE.txt
|
29
29
|
- README.md
|
30
|
-
- lib/jruby-rack-1.0.
|
30
|
+
- lib/jruby-rack-1.0.6.rc1.jar
|
31
31
|
- lib/jruby-rack.rb
|
32
32
|
- lib/jruby/rack/version.rb
|
33
33
|
has_rdoc: true
|
@@ -48,9 +48,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
48
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
49
|
none: false
|
50
50
|
requirements:
|
51
|
-
- - "
|
51
|
+
- - ">"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
53
|
+
version: 1.3.1
|
54
54
|
requirements: []
|
55
55
|
|
56
56
|
rubyforge_project: jruby-extras
|