-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathopenvoxserver-ca.gemspec
More file actions
30 lines (23 loc) · 1.09 KB
/
Copy pathopenvoxserver-ca.gemspec
File metadata and controls
30 lines (23 loc) · 1.09 KB
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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "puppetserver/ca/version"
Gem::Specification.new do |spec|
spec.name = "openvoxserver-ca"
spec.version = Puppetserver::Ca::VERSION
spec.authors = ["OpenVox Project"]
spec.email = ["openvox@voxpupuli.org"]
spec.license = "Apache-2.0"
spec.summary = %q{A simple CLI tool for interacting with OpenVox Server's Certificate Authority}
spec.homepage = "https://github.com/OpenVoxProject/openvoxserver-ca/"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(lib|exe)/|.md$|^LICENSE$})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "openfact", [">= 5.0.0", "< 6"]
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.4"
# openvoxserver 7 uses jruby 9.3 which is compatible with MRI ruby 2.6
spec.required_ruby_version = '>= 2.6.0'
end