1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/rack-protection/rack-protection.gemspec

70 lines
1.6 KiB
Ruby
Raw Normal View History

$:.unshift File.expand_path("../../rack-protection/lib", __FILE__)
require "rack/protection/version"
2016-08-22 23:08:23 +09:00
2011-05-23 10:07:54 +02:00
Gem::Specification.new do |s|
# general infos
s.name = "rack-protection"
s.version = Rack::Protection::VERSION
2016-08-22 23:08:23 +09:00
s.description = "Protect against typical web attacks, works with all Rack apps, including Rails."
s.homepage = "http://github.com/sinatra/sinatra/tree/master/rack-protection"
2011-05-23 10:07:54 +02:00
s.summary = s.description
2013-10-21 11:34:40 +02:00
s.license = 'MIT'
2011-05-23 10:07:54 +02:00
# generated from git shortlog -sn
s.authors = [
2011-09-02 13:45:05 -06:00
"Konstantin Haase",
"Maurizio De Santis",
2012-12-10 16:50:39 +01:00
"Alex Rodionov",
2014-04-08 10:56:31 -04:00
"Jason Staten",
"Patrick Ellis",
2013-10-21 11:41:16 +02:00
"ITO Nobuaki",
2014-01-15 10:36:59 +01:00
"Jeff Welling",
2014-04-08 10:56:31 -04:00
"Matteo Centenaro",
"Akzhan Abdulin",
"Alan deLevie",
"Bj\u{f8}rge N\u{e6}ss",
"Chris Heald",
"Chris Mytton",
"Corey Ward",
"Dario Cravero",
"David Kellum",
2013-03-01 15:55:54 +11:00
"Egor Homakov",
2013-03-13 07:39:42 +01:00
"Florian Gilcher",
2011-12-30 13:07:33 +01:00
"Fojas",
2014-04-08 10:56:31 -04:00
"Igor Bochkariov",
"Josef Stribny",
"Katrina Owen",
2012-12-10 16:50:39 +01:00
"Mael Clerambault",
"Martin Mauch",
2014-01-15 10:36:59 +01:00
"Renne Nissinen",
2012-12-10 16:50:39 +01:00
"SAKAI, Kazuaki",
"Stanislav Savulchik",
"Steve Agalloco",
"TOBY",
2014-04-08 10:56:31 -04:00
"Thais Camilo and Konstantin Haase",
2014-01-15 10:36:59 +01:00
"Vipul A M",
"Zachary Scott",
"ashley williams",
"brookemckim"
2011-05-23 10:07:54 +02:00
]
# generated from git shortlog -sne
s.email = [
"mail@zzak.io",
"konstantin.haase@gmail.com"
2011-05-23 10:07:54 +02:00
]
s.files = Dir["lib/**/*.rb"] + [
2011-05-23 10:07:54 +02:00
"License",
"README.md",
"Rakefile",
"Gemfile",
"rack-protection.gemspec"
2011-05-23 10:07:54 +02:00
]
# dependencies
s.add_dependency "rack"
s.add_development_dependency "rack-test"
2014-09-03 01:57:09 +02:00
s.add_development_dependency "rspec", "~> 3.0.0"
2011-05-23 10:07:54 +02:00
end