Sha256: 0c33482c34e24fd52692c3d60e58da3543f1dfb4c8b1822bb119cf587c074ddf
Contents?: true
Size: 1.88 KB
Versions: 2
Compression:
Stored size: 1.88 KB
Contents
# CVSS-Suite, a Ruby gem to manage the CVSS vector # # Copyright (c) 2016-2022 Siemens AG # Copyright (c) 2022 0llirocks # # Authors: # 0llirocks <http://0lli.rocks> # # This work is licensed under the terms of the MIT license. # See the LICENSE.md file in the top-level directory. # coding: utf-8 lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cvss_suite/version' Gem::Specification.new do |spec| spec.name = 'cvss-suite' spec.version = CvssSuite::VERSION spec.license = 'MIT' spec.authors = ['0llirocks'] spec.summary = 'Ruby gem for processing cvss vectors.' spec.description = 'This Ruby gem helps you to process the vector of the Common Vulnerability Scoring System (https://www.first.org/cvss/specification-document). Besides calculating the Base, Temporal and Environmental Score, you are able to extract the selected option.' spec.metadata = { 'bug_tracker_uri' => 'https://github.com/0llirocks/cvss-suite/issues', 'changelog_uri' => 'https://github.com/0llirocks/cvss-suite/blob/master/CHANGES.md', 'documentation_uri' => "https://www.rubydoc.info/gems/cvss-suite/#{CvssSuite::VERSION}", 'homepage_uri' => 'https://cvss-suite.0lli.rocks', 'source_code_uri' => 'https://github.com/0llirocks/cvss-suite' } spec.required_ruby_version = '>= 2.6.0' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '>= 1.10' spec.add_development_dependency 'rspec', '~> 3.4' spec.add_development_dependency 'rspec-its', '~> 1.2' spec.add_development_dependency 'simplecov', '~> 0.18' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cvss-suite-3.1.1 | cvss_suite.gemspec |
cvss-suite-3.1.0 | cvss_suite.gemspec |