2011-05-23 04:07:54 -04:00
|
|
|
# Run `rake rack-protection.gemspec` to update the gemspec.
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
# general infos
|
|
|
|
s.name = "rack-protection"
|
2013-03-13 02:39:42 -04:00
|
|
|
s.version = "1.5.0"
|
2011-05-23 04:07:54 -04:00
|
|
|
s.description = "You should use protection!"
|
|
|
|
s.homepage = "http://github.com/rkh/rack-protection"
|
|
|
|
s.summary = s.description
|
|
|
|
|
|
|
|
# generated from git shortlog -sn
|
|
|
|
s.authors = [
|
2011-09-02 15:45:05 -04:00
|
|
|
"Konstantin Haase",
|
2012-12-10 10:50:39 -05:00
|
|
|
"Alex Rodionov",
|
2012-12-10 16:05:15 -05:00
|
|
|
"Chris Heald",
|
2012-12-10 10:50:39 -05:00
|
|
|
"Chris Mytton",
|
2011-09-02 15:45:05 -04:00
|
|
|
"Corey Ward",
|
2011-09-30 16:52:19 -04:00
|
|
|
"David Kellum",
|
2013-02-28 23:55:54 -05:00
|
|
|
"Egor Homakov",
|
2013-03-13 02:39:42 -04:00
|
|
|
"Florian Gilcher",
|
2011-12-30 07:07:33 -05:00
|
|
|
"Fojas",
|
2012-12-10 10:50:39 -05:00
|
|
|
"Mael Clerambault",
|
|
|
|
"Martin Mauch",
|
|
|
|
"SAKAI, Kazuaki",
|
|
|
|
"Stanislav Savulchik",
|
|
|
|
"Steve Agalloco",
|
|
|
|
"Akzhan Abdulin",
|
|
|
|
"TOBY",
|
2013-02-28 23:55:54 -05:00
|
|
|
"Bj\u00F8rge N\u00E6ss"
|
2011-05-23 04:07:54 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# generated from git shortlog -sne
|
|
|
|
s.email = [
|
2011-09-02 15:45:05 -04:00
|
|
|
"konstantin.mailinglists@googlemail.com",
|
2012-12-10 10:50:39 -05:00
|
|
|
"p0deje@gmail.com",
|
|
|
|
"self@hecticjeff.net",
|
2011-09-02 15:45:05 -04:00
|
|
|
"coreyward@me.com",
|
2011-09-30 16:52:19 -04:00
|
|
|
"dek-oss@gravitext.com",
|
2013-02-28 23:55:54 -05:00
|
|
|
"homakov@gmail.com",
|
2013-03-13 02:39:42 -04:00
|
|
|
"florian.gilcher@asquera.de",
|
2011-12-30 07:07:33 -05:00
|
|
|
"developer@fojasaur.us",
|
2012-12-10 10:50:39 -05:00
|
|
|
"mael@clerambault.fr",
|
|
|
|
"martin.mauch@gmail.com",
|
|
|
|
"kaz.july.7@gmail.com",
|
|
|
|
"s.savulchik@gmail.com",
|
|
|
|
"steve.agalloco@gmail.com",
|
|
|
|
"akzhan.abdulin@gmail.com",
|
|
|
|
"toby.net.info.mail+git@gmail.com",
|
2013-03-13 02:39:42 -04:00
|
|
|
"bjoerge@bengler.no",
|
|
|
|
"cheald@gmail.com"
|
2011-05-23 04:07:54 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# generated from git ls-files
|
|
|
|
s.files = [
|
|
|
|
"License",
|
|
|
|
"README.md",
|
|
|
|
"Rakefile",
|
|
|
|
"lib/rack-protection.rb",
|
|
|
|
"lib/rack/protection.rb",
|
2011-06-20 09:49:38 -04:00
|
|
|
"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",
|
2012-12-10 10:50:39 -05:00
|
|
|
"lib/rack/protection/http_origin.rb",
|
2011-06-20 09:49:38 -04:00
|
|
|
"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",
|
2011-05-23 04:07:54 -04:00
|
|
|
"lib/rack/protection/version.rb",
|
2011-06-20 09:49:38 -04:00
|
|
|
"lib/rack/protection/xss_header.rb",
|
2011-05-23 04:07:54 -04:00
|
|
|
"rack-protection.gemspec",
|
2011-06-20 09:49:38 -04:00
|
|
|
"spec/authenticity_token_spec.rb",
|
|
|
|
"spec/escaped_params_spec.rb",
|
|
|
|
"spec/form_token_spec.rb",
|
|
|
|
"spec/frame_options_spec.rb",
|
2012-12-10 10:50:39 -05:00
|
|
|
"spec/http_origin_spec.rb",
|
2011-06-20 09:49:38 -04:00
|
|
|
"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"
|
2011-05-23 04:07:54 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# dependencies
|
|
|
|
s.add_dependency "rack"
|
2011-05-23 11:36:16 -04:00
|
|
|
s.add_development_dependency "rack-test"
|
2011-05-23 04:07:54 -04:00
|
|
|
s.add_development_dependency "rspec", "~> 2.0"
|
|
|
|
end
|