Sha256: bbb5216a10043dff9ef52a230c55af908d4bf72b751f7a9c4c07c650b9037441
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
require_relative "lib/code_scanning/standard/version" Gem::Specification.new do |spec| spec.name = "code-scanning-standard" spec.version = CodeScanning::Standard::VERSION spec.authors = ["Andrew Mason"] spec.email = %w[andrewmcodes@protonmail.com] spec.summary = "Extra formater to make StandardRB compatible with GitHub's code-scanning feature." spec.description = "This gem adds a SARIF formatter to Standard, so we can export alerts as code scans inside of GitHub." spec.homepage = "https://github.com/andrewmcodes/code-scanning-standard" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.metadata = { # "allowed_push_host" => "TODO: Set to 'http://mygemserver.com'" "bug_tracker_uri" => "#{spec.homepage}/issues", "changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md", "documentation_uri" => spec.homepage, "homepage_uri" => spec.homepage, "source_code_uri" => spec.homepage } spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = %w[lib] spec.add_dependency "standard", ">= 0.5", "< 1" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
code-scanning-standard-0.0.1.alpha | code-scanning-standard.gemspec |