forked from hashicorp/vault-rails
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fc-vault-rails.gemspec
33 lines (28 loc) · 1.18 KB
/
fc-vault-rails.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
$:.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 = "fc-vault-rails"
s.version = Vault::Rails::VERSION
s.authors = ["Funding Circle Engineering", "Seth Vargo"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/fundingcircle/fc-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 "activerecord"
s.add_dependency "vault", "~> 0.7"
s.add_dependency "tzinfo-data"
s.add_development_dependency "appraisal", "~> 2.1"
s.add_development_dependency "bundler"
s.add_development_dependency "rails", "~> 6"
s.add_development_dependency "byebug"
s.add_development_dependency "pry"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "sqlite3", '~> 1.4'
s.add_development_dependency "oj"
end