sinatra/rack-protection/rack-protection.gemspec

93 lines
2.6 KiB
Ruby
Raw Normal View History

2011-05-23 08:07:54 +00:00
# Run `rake rack-protection.gemspec` to update the gemspec.
Gem::Specification.new do |s|
# general infos
s.name = "rack-protection"
2013-03-01 04:55:54 +00:00
s.version = "1.4.0"
2011-05-23 08:07:54 +00: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 19:45:05 +00:00
"Konstantin Haase",
2012-12-10 15:50:39 +00:00
"Alex Rodionov",
2012-12-10 21:05:15 +00:00
"Chris Heald",
2012-12-10 15:50:39 +00:00
"Chris Mytton",
2011-09-02 19:45:05 +00:00
"Corey Ward",
2011-09-30 20:52:19 +00:00
"David Kellum",
2013-03-01 04:55:54 +00:00
"Egor Homakov",
2011-12-30 12:07:33 +00:00
"Fojas",
2012-12-10 15:50:39 +00:00
"Mael Clerambault",
"Martin Mauch",
"SAKAI, Kazuaki",
"Stanislav Savulchik",
"Steve Agalloco",
"Akzhan Abdulin",
"TOBY",
2013-03-01 04:55:54 +00:00
"Bj\u00F8rge N\u00E6ss"
2011-05-23 08:07:54 +00:00
]
# generated from git shortlog -sne
s.email = [
2011-09-02 19:45:05 +00:00
"konstantin.mailinglists@googlemail.com",
2012-12-10 15:50:39 +00:00
"p0deje@gmail.com",
2012-12-10 21:05:15 +00:00
"cheald@gmail.com",
2012-12-10 15:50:39 +00:00
"self@hecticjeff.net",
2011-09-02 19:45:05 +00:00
"coreyward@me.com",
2011-09-30 20:52:19 +00:00
"dek-oss@gravitext.com",
2013-03-01 04:55:54 +00:00
"homakov@gmail.com",
2011-12-30 12:07:33 +00:00
"developer@fojasaur.us",
2012-12-10 15:50:39 +00: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",
"bjoerge@bengler.no"
2011-05-23 08:07:54 +00:00
]
# generated from git ls-files
s.files = [
"License",
"README.md",
"Rakefile",
"lib/rack-protection.rb",
"lib/rack/protection.rb",
2011-06-20 13:49:38 +00: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 15:50:39 +00:00
"lib/rack/protection/http_origin.rb",
2011-06-20 13:49:38 +00: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 08:07:54 +00:00
"lib/rack/protection/version.rb",
2011-06-20 13:49:38 +00:00
"lib/rack/protection/xss_header.rb",
2011-05-23 08:07:54 +00:00
"rack-protection.gemspec",
2011-06-20 13:49:38 +00:00
"spec/authenticity_token_spec.rb",
"spec/escaped_params_spec.rb",
"spec/form_token_spec.rb",
"spec/frame_options_spec.rb",
2012-12-10 15:50:39 +00:00
"spec/http_origin_spec.rb",
2011-06-20 13:49:38 +00: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 08:07:54 +00:00
]
# dependencies
s.add_dependency "rack"
s.add_development_dependency "rack-test"
2011-05-23 08:07:54 +00:00
s.add_development_dependency "rspec", "~> 2.0"
end