jruby-rack 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.1.3 (01/10/12)
2
+
3
+ - Additional fix for #73, #76 (Fix relative_url_root issue for good)
4
+ - Stop using BufferedLogger (#80)
5
+
1
6
  == 1.1.2 (12/30/11)
2
7
 
3
8
  - GH#18: Undefined method `call' for nil:NilClass
data/README.md CHANGED
@@ -247,6 +247,25 @@ Please use GitHub to file bugs, patches and pull requests.
247
247
  - https://github.com/jruby/jruby-rack
248
248
  - https://github.com/jruby/jruby-rack/issues
249
249
 
250
+ # Releases
251
+
252
+ For JRuby-Rack contributors, the release process goes something like
253
+ the following:
254
+
255
+ 1. Ensure that release version is correct in pom.xml and `mvn install`
256
+ runs clean.
257
+ 2. Ensure generated changes to src/main/ruby/jruby/rack/version.rb are
258
+ checked in.
259
+ 3. Ensure History.txt is updated with latest release information.
260
+ 3. Tag current release in git: `git tag <version>`.
261
+ 4. Push commits and tag: `git push origin master --tags`
262
+ 5. Build gem: `rake clean gem`
263
+ 6. Push gem: `gem push target/jruby-rack-*.gem`
264
+ 7. Release jar to maven repository: `mvn -DupdateReleaseInfo=true deploy`
265
+ 8. Bump the version in pom.xml to the
266
+ `<next-release-version>.dev-SNAPSHOT`, run `mvn install`, and commit
267
+ the changes.
268
+
250
269
  ## Rails Step-by-step
251
270
 
252
271
  This example shows how to create and deploy a simple Rails app using
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = "1.1.2"
10
+ VERSION = "1.1.3"
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.1.2
5
+ version: 1.1.3
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-12-30 00:00:00 Z
13
+ date: 2012-01-10 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.2.jar
29
+ - lib/jruby-rack-1.1.3.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.9
58
+ rubygems_version: 1.8.13
59
59
  signing_key:
60
60
  specification_version: 3
61
61
  summary: Rack adapter for JRuby and Servlet Containers