-
Notifications
You must be signed in to change notification settings - Fork 53
/
vault.gemspec
29 lines (24 loc) · 999 Bytes
/
vault.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "vault/rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "vault-rails"
s.version = Vault::Rails::VERSION
s.authors = ["Seth Vargo"]
s.email = ["team-vault-devex@hashicorp.com"]
s.homepage = "https://github.com/hashicorp/vault-rails"
s.summary = "Official Vault plugin for Rails"
s.description = s.summary
s.license = "MPL-2.0"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "activesupport", ">= 5.0"
s.add_dependency "vault", "~> 0.18"
s.add_development_dependency "bundler"
s.add_development_dependency "pry"
s.add_development_dependency "pry-byebug"
s.add_development_dependency "rake", "~> 12.3.3"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "sqlite3", "~> 1.3.6"
end