File: rack-protection.gemspec

package info (click to toggle)
ruby-rack-protection 1.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 216 kB
  • ctags: 99
  • sloc: ruby: 1,021; makefile: 2
file content (112 lines) | stat: -rw-r--r-- 3,110 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Run `rake rack-protection.gemspec` to update the gemspec.
Gem::Specification.new do |s|
  # general infos
  s.name        = "rack-protection"
  s.version     = "1.5.2"
  s.description = "You should use protection!"
  s.homepage    = "http://github.com/rkh/rack-protection"
  s.summary     = s.description
  s.license     = 'MIT'

  # generated from git shortlog -sn
  s.authors = [
    "Konstantin Haase",
    "Alex Rodionov",
    "Patrick Ellis",
    "ITO Nobuaki",
    "Matteo Centenaro",
    "Jeff Welling",
    "David Kellum",
    "Egor Homakov",
    "Florian Gilcher",
    "Fojas",
    "Mael Clerambault",
    "Martin Mauch",
    "Renne Nissinen",
    "SAKAI, Kazuaki",
    "Stanislav Savulchik",
    "Steve Agalloco",
    "TOBY",
    "Vipul A M",
    "Akzhan Abdulin",
    "brookemckim",
    "Bj\u00F8rge N\u00E6ss",
    "Chris Heald",
    "Chris Mytton",
    "Corey Ward",
    "Dario Cravero"
  ]

  # generated from git shortlog -sne
  s.email = [
    "konstantin.mailinglists@googlemail.com",
    "p0deje@gmail.com",
    "patrick@soundcloud.com",
    "jeff.welling@gmail.com",
    "daydream.trippers@gmail.com",
    "bugant@gmail.com",
    "homakov@gmail.com",
    "florian.gilcher@asquera.de",
    "developer@fojasaur.us",
    "mael@clerambault.fr",
    "martin.mauch@gmail.com",
    "rennex@iki.fi",
    "kaz.july.7@gmail.com",
    "s.savulchik@gmail.com",
    "steve.agalloco@gmail.com",
    "toby.net.info.mail+git@gmail.com",
    "vipulnsward@gmail.com",
    "akzhan.abdulin@gmail.com",
    "brooke@digitalocean.com",
    "bjoerge@bengler.no",
    "cheald@gmail.com",
    "self@hecticjeff.net",
    "coreyward@me.com",
    "dario@uxtemple.com",
    "dek-oss@gravitext.com"
  ]

  # generated from git ls-files
  s.files = [
    "License",
    "README.md",
    "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/http_origin.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/authenticity_token_spec.rb",
    "spec/base_spec.rb",
    "spec/escaped_params_spec.rb",
    "spec/form_token_spec.rb",
    "spec/frame_options_spec.rb",
    "spec/http_origin_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
  s.add_dependency "rack"
  s.add_development_dependency "rack-test"
  s.add_development_dependency "rspec", "~> 2.0"
end