rack-attack 0.2.0 → 1.0.0

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.

Potentially problematic release.


This version of rack-attack might be problematic. Click here for more details.

data/README.md CHANGED
@@ -129,4 +129,4 @@ Thanks to [Kickstarter](https://github.com/kickstarter) for sponsoring Rack::Att
129
129
 
130
130
  Copyright (c) 2012 Kickstarter, Inc
131
131
 
132
- Released under an (MIT License](http://opensource.org/licenses/MIT)
132
+ Released under an [MIT License](http://opensource.org/licenses/MIT)
@@ -35,7 +35,7 @@ module Rack::Attack
35
35
  @blacklisted_response ||= lambda {|env| [503, {}, ['Blocked']] }
36
36
  @throttled_response ||= lambda {|env|
37
37
  retry_after = env['rack.attack.match_data'][:period] rescue nil
38
- [503, {'Retry-After' => retry_after}, ['Retry later']]
38
+ [503, {'Retry-After' => retry_after.to_s}, ['Retry later']]
39
39
  }
40
40
 
41
41
  self
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module Attack
3
- VERSION = '0.2.0'
3
+ VERSION = '1.0.0'
4
4
  end
5
5
  end
@@ -93,7 +93,7 @@ describe 'Rack::Attack' do
93
93
  last_request.env['rack.attack.match_data'].must_equal({:count => 2, :limit => 1, :period => 1})
94
94
  end
95
95
  it 'should set a Retry-After header' do
96
- last_response.headers['Retry-After'].must_equal 1
96
+ last_response.headers['Retry-After'].must_equal '1'
97
97
  end
98
98
  end
99
99
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-attack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-30 00:00:00.000000000 Z
12
+ date: 2012-08-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack