-
Notifications
You must be signed in to change notification settings - Fork 734
/
brakeman-lib.gemspec
30 lines (27 loc) · 1.35 KB
/
brakeman-lib.gemspec
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
require './lib/brakeman/version'
require './gem_common'
Gem::Specification.new do |s|
s.name = %q{brakeman-lib}
s.version = Brakeman::Version
s.authors = ["Justin Collins"]
s.email = "[email protected]"
s.summary = "Security vulnerability scanner for Ruby on Rails."
s.description = "Brakeman detects security vulnerabilities in Ruby on Rails applications via static analysis. This package declares gem dependencies instead of bundling them."
s.homepage = "http://brakemanscanner.org"
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.5.0'
s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
"changelog_uri" => "https://github.com/presidentbeef/brakeman/releases",
"documentation_uri" => "https://brakemanscanner.org/docs/",
"homepage_uri" => "https://brakemanscanner.org/",
"mailing_list_uri" => "https://gitter.im/presidentbeef/brakeman",
"source_code_uri" => "https://github.com/presidentbeef/brakeman",
"wiki_uri" => "https://github.com/presidentbeef/brakeman/wiki"
}
Brakeman::GemDependencies.dev_dependencies(s)
Brakeman::GemDependencies.base_dependencies(s)
Brakeman::GemDependencies.extended_dependencies(s)
end