This repository has been archived by the owner on Jul 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sanctum.gemspec
39 lines (34 loc) · 1.6 KB
/
sanctum.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
33
34
35
36
37
38
39
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sanctum/version'
Gem::Specification.new do |spec|
spec.name = "sanctum"
spec.version = Sanctum::VERSION
spec.authors = ["Corban Raun"]
spec.email = ["[email protected]"]
spec.date = Time.now.strftime('%Y-%m-%d')
spec.summary = %q{Simple and secure filesystem-to-Vault secrets synchronization}
spec.description = %q{Syncs encrypted content from the filesystem to the Vault secrets store.}
spec.homepage = "https://github.com/CorbanR/sanctum"
spec.license = "MIT"
spec.metadata = {"documentation_uri" => "https://github.com/CorbanR/sanctum"}
spec.required_ruby_version = '>=2.5.0'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
exclude = [%r{^(test|spec|features|examples)/}, %r{docker.*}i, %r{\.nix}, %r{\.gitlab-ci.yml}]
f.match(Regexp.union(exclude))
end
spec.bindir = "bin"
spec.executables = "sanctum"
spec.require_paths = ["lib"]
spec.add_dependency 'gli', '~> 2.18'
spec.add_dependency 'hashdiff', '~> 1.0'
spec.add_dependency 'tty-editor', '~> 0.5'
spec.add_dependency 'vault', '~> 0.12'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'overcommit', '~> 0.52'
spec.add_development_dependency 'pry', '~> 0.13.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.80.0'
spec.add_development_dependency 'rubocop-rspec', '~> 1.38.0'
end