corntrace-rack-contrib 1.0.2.2 → 1.0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/lib/rack/contrib.rb CHANGED
@@ -3,7 +3,7 @@ require 'rack'
3
3
  module Rack
4
4
  module Contrib
5
5
  def self.release
6
- "1.0.2.2"
6
+ "1.0.2.3"
7
7
  end
8
8
  end
9
9
 
@@ -67,7 +67,7 @@ module Rack
67
67
  # status code to 200. That because the jsonp's implemetation could not handler
68
68
  # http status code when error occured, which could be meaningful in webservice.
69
69
  def translate_error_code(status, response)
70
- if status % 400 == 4 || status % 500 == 5
70
+ if status / 100 == 4 || status / 100 == 5
71
71
  [200, [%Q|{"errorCode":#{status}}|]]
72
72
  else
73
73
  [status, response]
data/rack-contrib.gemspec CHANGED
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
4
4
 
5
5
  s.name = 'corntrace-rack-contrib'
6
- s.version = '1.0.2.2'
6
+ s.version = '1.0.2.3'
7
7
  s.date = '2010-07-18'
8
8
 
9
9
  s.description = "Contributed Rack Middleware and Utilities"
@@ -55,11 +55,11 @@ context "Rack::JSONP" do
55
55
 
56
56
  specify "should write status code to response and set status to 200 if status is 40x or 50x" do
57
57
  callback = 'foo'
58
- app = lambda { |env| [404, {'Content-Type' => 'application/json'}, [""]] }
58
+ app = lambda { |env| [401, {'Content-Type' => 'application/json'}, [""]] }
59
59
  request = Rack::MockRequest.env_for("/", :params => "foo=bar&callback=#{callback}")
60
60
  status, headers, body = Rack::JSONP.new(app).call(request)
61
61
  status.should.equal 200
62
- body.should.equal ["#{callback}({\"errorCode\":404})"]
62
+ body.should.equal ["#{callback}({\"errorCode\":401})"]
63
63
  end
64
64
 
65
65
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: corntrace-rack-contrib
3
3
  version: !ruby/object:Gem::Version
4
- hash: 83
4
+ hash: 81
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 2
10
- - 2
11
- version: 1.0.2.2
10
+ - 3
11
+ version: 1.0.2.3
12
12
  platform: ruby
13
13
  authors:
14
14
  - Kevin Fu