jruby-rack 1.1.3 → 1.1.4
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.
- data/History.txt +13 -0
- data/LICENSE.txt +1 -1
- data/README.md +4 -14
- data/lib/jruby/rack/version.rb +2 -2
- data/lib/jruby-rack-1.1.4.jar +0 -0
- metadata +4 -4
- data/lib/jruby-rack-1.1.3.jar +0 -0
data/History.txt
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
== 1.1.4 (02/21/12)
|
|
2
|
+
|
|
3
|
+
- Thanks to @kares for all the maintenance and quick turnaround on
|
|
4
|
+
bugs this release!
|
|
5
|
+
- incorrectly interpreted byte in RewindableInputStream causing EOFs (#92)
|
|
6
|
+
- fix JRuby::Rack::Response 1.9 incompatibility due String#each
|
|
7
|
+
- ensure $servlet_context is not nil in embedded scenario (#88)
|
|
8
|
+
- upgrade to Rack 1.4.1
|
|
9
|
+
- fix resolving rackup on WLS 10.3 with Rails 3
|
|
10
|
+
- explicit require rack + on rails allow bundler to decide rack version
|
|
11
|
+
- config.logger fixes and support for ActiveSupport::TaggedLogging (#93)
|
|
12
|
+
- revert regression in 1.1.3 with incorrect filter behavior (#84)
|
|
13
|
+
|
|
1
14
|
== 1.1.3 (01/10/12)
|
|
2
15
|
|
|
3
16
|
- Additional fix for #73, #76 (Fix relative_url_root issue for good)
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -299,6 +299,10 @@ Copy this configuration into config/database.yml:
|
|
|
299
299
|
adapter: jdbch2
|
|
300
300
|
database: db/production_h2_database
|
|
301
301
|
|
|
302
|
+
Add the following to your application's Gemfile:
|
|
303
|
+
|
|
304
|
+
gem 'activerecord-jdbch2-adapter'
|
|
305
|
+
|
|
302
306
|
Generate a scaffold for a simple model of blog comments.
|
|
303
307
|
|
|
304
308
|
jruby script/rails generate scaffold comment name:string body:text
|
|
@@ -331,20 +335,6 @@ these comments:
|
|
|
331
335
|
This will tell Warble to include the just initialized production H2
|
|
332
336
|
database in the WAR.
|
|
333
337
|
|
|
334
|
-
Continue editing config/warble.rb and add the following line after
|
|
335
|
-
these comments:
|
|
336
|
-
|
|
337
|
-
# Gems to be packaged in the webapp. Note that Rails gems are added to this
|
|
338
|
-
# list if vendor/rails is not present, so be sure to include rails if you
|
|
339
|
-
# overwrite the value
|
|
340
|
-
# config.gems = ["activerecord-jdbc-adapter", "jruby-openssl"]
|
|
341
|
-
# config.gems << "tzinfo"
|
|
342
|
-
# config.gems["rails"] = "1.2.3"
|
|
343
|
-
config.gems << "activerecord-jdbch2-adapter"
|
|
344
|
-
|
|
345
|
-
This will tell Warble to add the JDBC driver for H2 as well as the
|
|
346
|
-
ActiveRecord JDBC and JDBC-H2 adapter Gems.
|
|
347
|
-
|
|
348
338
|
Now generate the WAR file:
|
|
349
339
|
|
|
350
340
|
jruby -S warble war
|
data/lib/jruby/rack/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#--
|
|
2
|
-
# Copyright (c) 2010-
|
|
2
|
+
# Copyright (c) 2010-2012 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.1.
|
|
10
|
+
VERSION = "1.1.4"
|
|
11
11
|
end
|
|
12
12
|
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: jruby-rack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.1.
|
|
5
|
+
version: 1.1.4
|
|
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: 2012-
|
|
13
|
+
date: 2012-02-21 00:00:00 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
16
|
description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
|
|
@@ -26,7 +26,7 @@ files:
|
|
|
26
26
|
- History.txt
|
|
27
27
|
- LICENSE.txt
|
|
28
28
|
- README.md
|
|
29
|
-
- lib/jruby-rack-1.1.
|
|
29
|
+
- lib/jruby-rack-1.1.4.jar
|
|
30
30
|
- lib/jruby-rack.rb
|
|
31
31
|
- lib/jruby/rack/version.rb
|
|
32
32
|
homepage: http://jruby.org
|
|
@@ -55,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
55
55
|
requirements: []
|
|
56
56
|
|
|
57
57
|
rubyforge_project: jruby-extras
|
|
58
|
-
rubygems_version: 1.8.
|
|
58
|
+
rubygems_version: 1.8.15
|
|
59
59
|
signing_key:
|
|
60
60
|
specification_version: 3
|
|
61
61
|
summary: Rack adapter for JRuby and Servlet Containers
|
data/lib/jruby-rack-1.1.3.jar
DELETED
|
Binary file
|