-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathvault.gemspec
More file actions
29 lines (24 loc) · 1.04 KB
/
vault.gemspec
File metadata and controls
29 lines (24 loc) · 1.04 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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "vault/version"
Gem::Specification.new do |spec|
spec.name = "vault"
spec.version = Vault::VERSION
spec.authors = ["Seth Vargo"]
spec.email = ["team-vault-devex@hashicorp.com"]
spec.licenses = ["MPL-2.0"]
spec.summary = "Vault is a Ruby API client for interacting with a Vault server."
spec.description = spec.summary
spec.homepage = "https://github.com/hashicorp/vault-ruby"
spec.files = Dir["lib/**/**/**"]
spec.files += ["README.md", "CHANGELOG.md", "LICENSE"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1"
spec.add_runtime_dependency "aws-sigv4"
spec.add_runtime_dependency "base64"
spec.add_runtime_dependency "connection_pool", "~> 2.4"
spec.add_runtime_dependency "net-http-persistent", "~> 4.0", ">= 4.0.2"
end