-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathosa.gemspec
More file actions
26 lines (20 loc) · 867 Bytes
/
osa.gemspec
File metadata and controls
26 lines (20 loc) · 867 Bytes
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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "osa"
Gem::Specification.new do |spec|
spec.name = "osa"
spec.version = OSA::VERSION
spec.authors = ["KING SABRI"]
spec.email = ["king.sabri@gmail.com"]
spec.summary = %q{OSA is OpenStack Security Auditor tool and library}
spec.description = %q{OSA is OpenStack Security Auditor tool and library}
spec.homepage = "https://github.com/TechArchSA/osa/"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = ['osa']
spec.require_paths = ["lib"]
spec.add_dependency 'openstack'
spec.add_dependency 'terminal-table'
spec.post_install_message = OSA::Utils.logo
end