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
Zachary Scott 8a2dde0223 Bump version for developing 2.0.0 alpha
Updated gemspec task to only add maintainers emails,
probably not everyone wants their email publicly listed just for submitting a patch.

Also replaced the file selection to manual, which leaves out spec files from the gem package.
2016-07-25 16:57:04 +09:00

86 lines
2.2 KiB
Ruby

# Run `rake rack-protection.gemspec` to update the gemspec.
Gem::Specification.new do |s|
# general infos
s.name = "rack-protection"
s.version = "2.0.0"
s.description = "You should use protection!"
s.homepage = "http://github.com/sinatra/rack-protection"
s.summary = s.description
s.license = 'MIT'
# generated from git shortlog -sn
s.authors = [
"Konstantin Haase",
"Maurizio De Santis",
"Alex Rodionov",
"Jason Staten",
"Patrick Ellis",
"ITO Nobuaki",
"Jeff Welling",
"Matteo Centenaro",
"Akzhan Abdulin",
"Alan deLevie",
"Bj\u{f8}rge N\u{e6}ss",
"Chris Heald",
"Chris Mytton",
"Corey Ward",
"Dario Cravero",
"David Kellum",
"Egor Homakov",
"Florian Gilcher",
"Fojas",
"Igor Bochkariov",
"Josef Stribny",
"Katrina Owen",
"Mael Clerambault",
"Martin Mauch",
"Renne Nissinen",
"SAKAI, Kazuaki",
"Stanislav Savulchik",
"Steve Agalloco",
"TOBY",
"Thais Camilo and Konstantin Haase",
"Vipul A M",
"Zachary Scott",
"ashley williams",
"brookemckim"
]
# generated from git shortlog -sne
s.email = [
"mail@zzak.io",
"konstantin.haase@gmail.com"
]
# generated from git ls-files
s.files = [
"License",
"README.md",
"Rakefile",
"Gemfile",
"rack-protection.gemspec",
"lib/rack",
"lib/rack/protection",
"lib/rack/protection/escaped_params.rb",
"lib/rack/protection/remote_referrer.rb",
"lib/rack/protection/ip_spoofing.rb",
"lib/rack/protection/base.rb",
"lib/rack/protection/session_hijacking.rb",
"lib/rack/protection/authenticity_token.rb",
"lib/rack/protection/version.rb",
"lib/rack/protection/path_traversal.rb",
"lib/rack/protection/form_token.rb",
"lib/rack/protection/json_csrf.rb",
"lib/rack/protection/http_origin.rb",
"lib/rack/protection/frame_options.rb",
"lib/rack/protection/xss_header.rb",
"lib/rack/protection/remote_token.rb",
"lib/rack/protection.rb",
"lib/rack-protection.rb"
]
# dependencies
s.add_dependency "rack"
s.add_development_dependency "rack-test"
s.add_development_dependency "rspec", "~> 3.0.0"
end