-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlegion-crypt.gemspec
32 lines (28 loc) · 1.43 KB
/
legion-crypt.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
28
29
30
31
32
# frozen_string_literal: true
require_relative 'lib/legion/crypt/version'
Gem::Specification.new do |spec|
spec.name = 'legion-crypt'
spec.version = Legion::Crypt::VERSION
spec.authors = ['Esity']
spec.email = %w[[email protected] [email protected]]
spec.summary = 'Handles requests for encrypt, decrypting, connecting to Vault, among other things'
spec.description = 'A gem used by the LegionIO framework for encryption'
spec.homepage = 'https://github.com/Optum/legion-crypt'
spec.license = 'Apache-2.0'
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.4'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.test_files = spec.files.select { |p| p =~ %r{^test/.*_test.rb} }
spec.extra_rdoc_files = %w[README.md LICENSE CHANGELOG.md]
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/Optum/legion-crypt/issues',
'changelog_uri' => 'https://github.com/Optum/legion-crypt/src/main/CHANGELOG.md',
'documentation_uri' => 'https://github.com/Optum/legion-crypt',
'homepage_uri' => 'https://github.com/Optum/LegionIO',
'source_code_uri' => 'https://github.com/Optum/legion-crypt',
'wiki_uri' => 'https://github.com/Optum/legion-crypt/wiki'
}
spec.add_dependency 'vault', '>= 0.15.0'
spec.add_development_dependency 'legion-logging'
spec.add_development_dependency 'legion-settings'
end