-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathhiera-eyaml-gpg.gemspec
More file actions
20 lines (17 loc) · 864 Bytes
/
hiera-eyaml-gpg.gemspec
File metadata and controls
20 lines (17 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hiera/backend/eyaml/encryptors/gpg/version'
Gem::Specification.new do |gem|
gem.name = 'hiera-eyaml-gpg'
gem.version = Hiera::Backend::Eyaml::Encryptors::GpgVersion::VERSION
gem.description = 'GPG encryptor for use with hiera-eyaml'
gem.summary = 'Encryption plugin for hiera-eyaml backend for Hiera'
gem.author = 'Simon Hildrew'
gem.license = 'MIT'
gem.homepage = 'http://github.com/sihil/hiera-eyaml-gpg'
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_dependency('hiera-eyaml', '>=1.3.8')
end