rack-protection 3.0.4 → 3.0.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc2a9375b36c8e8f7948e6fb6fd0cb3ae2714c7bafb4f74f83802981838175cb
4
- data.tar.gz: c11ddfca9afd14ce7264a4fbbe9daf25b937419deb0b8d9f338df51f58e2ebb8
3
+ metadata.gz: 990bfb3981089f50f2bc4738b8c663a87a8bfe526118a961f4e49e4e8365d062
4
+ data.tar.gz: 22a6b16e5cfe8f7bf06eb2def6a63f1b90a4b48889dbae274205af1b4a30eb0c
5
5
  SHA512:
6
- metadata.gz: d66307d6eb431e3bee7b8b1ba17272de2e826707c734004349d70a748806b6b25cee6813504a0a2b84ef6e7bc3cd4cda3769edec697686b8e096615152dc32b3
7
- data.tar.gz: 835fed194c6c5ca09656ea426ea445be81a4e8c3676f1754294edab0ae2760742a708b0d9b2499d2231793502646eccbaf905a89300177b55ed50c5c061dd205
6
+ metadata.gz: ed90e7d9d0b2c465f8b9aeee02b270e7990c3368c7284c33a3e7e9a3c2860d462fcbc6eba4bd9212f21d052dd0ee9a3844534f9e6273f20093f943d112aecb7e
7
+ data.tar.gz: 4083723bf61ef5effbb3146604f7091ff3456506ebbd44f883a7c7ffc79fc2070b24c0c9e8804ce5a4fac1521fbf445847e9de79110d368207fa11d26944ea21
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ gem 'rake'
7
7
 
8
8
  rack_version = ENV['rack'].to_s
9
9
  rack_version = nil if rack_version.empty? || (rack_version == 'stable')
10
- rack_version = { github: 'rack/rack' } if rack_version == 'main'
10
+ rack_version = { github: 'rack/rack' } if rack_version == 'head'
11
11
  gem 'rack', rack_version
12
12
 
13
13
  gem 'sinatra', path: '..'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rack
4
4
  module Protection
5
- VERSION = '3.0.3'
5
+ VERSION = '3.0.6'
6
6
  end
7
7
  end
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.name = 'rack-protection'
8
8
  s.version = version
9
9
  s.description = 'Protect against typical web attacks, works with all Rack apps, including Rails.'
10
- s.homepage = 'http://sinatrarb.com/protection/'
10
+ s.homepage = 'https://sinatrarb.com/protection/'
11
11
  s.summary = s.description
12
12
  s.license = 'MIT'
13
13
  s.authors = ['https://github.com/sinatra/sinatra/graphs/contributors']
@@ -30,7 +30,7 @@ RubyGems 2.0 or newer is required to protect against public gem pushes. You can
30
30
  end
31
31
 
32
32
  s.metadata = {
33
- 'source_code_uri' => 'https://github.com/sinatra/sinatra/tree/master/rack-protection',
33
+ 'source_code_uri' => 'https://github.com/sinatra/sinatra/tree/main/rack-protection',
34
34
  'homepage_uri' => 'http://sinatrarb.com/protection/',
35
35
  'documentation_uri' => 'https://www.rubydoc.info/gems/rack-protection',
36
36
  'rubygems_mfa_required' => 'true'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-protection
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://github.com/sinatra/sinatra/graphs/contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-25 00:00:00.000000000 Z
11
+ date: 2023-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -87,11 +87,11 @@ files:
87
87
  - lib/rack/protection/xss_header.rb
88
88
  - lib/rack_protection.rb
89
89
  - rack-protection.gemspec
90
- homepage: http://sinatrarb.com/protection/
90
+ homepage: https://sinatrarb.com/protection/
91
91
  licenses:
92
92
  - MIT
93
93
  metadata:
94
- source_code_uri: https://github.com/sinatra/sinatra/tree/master/rack-protection
94
+ source_code_uri: https://github.com/sinatra/sinatra/tree/main/rack-protection
95
95
  homepage_uri: http://sinatrarb.com/protection/
96
96
  documentation_uri: https://www.rubydoc.info/gems/rack-protection
97
97
  rubygems_mfa_required: 'true'
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  requirements: []
113
- rubygems_version: 3.2.3
113
+ rubygems_version: 3.4.10
114
114
  signing_key:
115
115
  specification_version: 4
116
116
  summary: Protect against typical web attacks, works with all Rack apps, including