forked from Trietptm-on-Security/csi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csi.gemspec
25 lines (22 loc) · 892 Bytes
/
csi.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
# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'csi/version'
Gem::Specification.new do |spec|
spec.name = 'csi'
spec.version = CSI::VERSION
spec.authors = ['Jacob Hoopes']
spec.email = ['jake.hoopes@gmail.com']
spec.summary = 'Automated Security Testing for CI/CD Pipelines & Beyond'
spec.description = 'https://github.com/ninp0/csi/README.md'
spec.homepage = 'https://github.com/ninp0/csi'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
end