rack-protection 3.0.5 → 3.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/lib/rack/protection/version.rb +1 -1
- data/rack-protection.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 990bfb3981089f50f2bc4738b8c663a87a8bfe526118a961f4e49e4e8365d062
|
4
|
+
data.tar.gz: 22a6b16e5cfe8f7bf06eb2def6a63f1b90a4b48889dbae274205af1b4a30eb0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 == '
|
10
|
+
rack_version = { github: 'rack/rack' } if rack_version == 'head'
|
11
11
|
gem 'rack', rack_version
|
12
12
|
|
13
13
|
gem 'sinatra', path: '..'
|
data/rack-protection.gemspec
CHANGED
@@ -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 = '
|
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/
|
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
|
+
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:
|
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:
|
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/
|
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.
|
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
|