-
Notifications
You must be signed in to change notification settings - Fork 3
/
hiera-eyaml-gkms.gemspec
27 lines (21 loc) · 1.04 KB
/
hiera-eyaml-gkms.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
26
27
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hiera/backend/eyaml/encryptors/gkms/version'
require 'English'
Gem::Specification.new do |gem|
gem.name = 'hiera-eyaml-gkms'
gem.version = Hiera::Backend::Eyaml::Encryptors::GkmsVersion::VERSION
gem.description = 'Google Cloud KMS plugin for Hiera-EYAML'
gem.summary = 'Encryption plugin for hiera-eyaml backend for Hiera, using Google Cloud KMS'
gem.author = 'Craig Watson'
gem.license = 'Apache-2.0'
gem.homepage = 'https://github.com/craigwatson/hiera-eyaml-gkms'
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR).grep_v(%r{/^features.*$/})
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency('google-cloud-kms', '2.0.0')
gem.add_dependency('hiera-eyaml', '>= 3.2.0', '< 4.0')
gem.required_ruby_version = '>= 2.5.0', ' < 4'
gem.metadata['rubygems_mfa_required'] = 'false'
end