mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Release v0.1.0
This commit is contained in:
parent
b512a10237
commit
2efb1a68e0
2 changed files with 28 additions and 4 deletions
|
@ -8,8 +8,8 @@ module Rack
|
|||
extend Comparable
|
||||
|
||||
MAJOR = 0
|
||||
MINOR = 0
|
||||
TINY = 1
|
||||
MINOR = 1
|
||||
TINY = 0
|
||||
SIGNATURE = [MAJOR, MINOR, TINY]
|
||||
STRING = SIGNATURE.join '.'
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
Gem::Specification.new do |s|
|
||||
# general infos
|
||||
s.name = "rack-protection"
|
||||
s.version = "0.0.1"
|
||||
s.version = "0.1.0"
|
||||
s.description = "You should use protection!"
|
||||
s.homepage = "http://github.com/rkh/rack-protection"
|
||||
s.summary = s.description
|
||||
|
@ -24,9 +24,33 @@ Gem::Specification.new do |s|
|
|||
"Rakefile",
|
||||
"lib/rack-protection.rb",
|
||||
"lib/rack/protection.rb",
|
||||
"lib/rack/protection/authenticity_token.rb",
|
||||
"lib/rack/protection/base.rb",
|
||||
"lib/rack/protection/escaped_params.rb",
|
||||
"lib/rack/protection/form_token.rb",
|
||||
"lib/rack/protection/frame_options.rb",
|
||||
"lib/rack/protection/ip_spoofing.rb",
|
||||
"lib/rack/protection/json_csrf.rb",
|
||||
"lib/rack/protection/path_traversal.rb",
|
||||
"lib/rack/protection/remote_referrer.rb",
|
||||
"lib/rack/protection/remote_token.rb",
|
||||
"lib/rack/protection/session_hijacking.rb",
|
||||
"lib/rack/protection/version.rb",
|
||||
"lib/rack/protection/xss_header.rb",
|
||||
"rack-protection.gemspec",
|
||||
"spec/rack_protection_spec.rb"
|
||||
"spec/authenticity_token_spec.rb",
|
||||
"spec/escaped_params_spec.rb",
|
||||
"spec/form_token_spec.rb",
|
||||
"spec/frame_options_spec.rb",
|
||||
"spec/ip_spoofing_spec.rb",
|
||||
"spec/json_csrf_spec.rb",
|
||||
"spec/path_traversal_spec.rb",
|
||||
"spec/protection_spec.rb",
|
||||
"spec/remote_referrer_spec.rb",
|
||||
"spec/remote_token_spec.rb",
|
||||
"spec/session_hijacking_spec.rb",
|
||||
"spec/spec_helper.rb",
|
||||
"spec/xss_header_spec.rb"
|
||||
]
|
||||
|
||||
# dependencies
|
||||
|
|
Loading…
Add table
Reference in a new issue