forked from houston/houston-credentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhouston-credentials.gemspec
27 lines (20 loc) · 996 Bytes
/
houston-credentials.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "houston/credentials/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "houston-credentials"
spec.version = Houston::Credentials::VERSION
spec.authors = ["Bob Lail"]
spec.email = ["[email protected]"]
spec.summary = "Allows capturing users' credentials for third-party integrations and storing them encrypted"
spec.homepage = "https://github.com/houston/houston-credentials"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.test_files = Dir["test/**/*"]
spec.add_dependency "houston-core", ">= 0.8.3"
# for encrypting user credentials
spec.add_dependency "strongbox", "~> 0.7.2"
spec.add_development_dependency "bundler", "~> 1.11.2"
spec.add_development_dependency "rake", "~> 10.0"
end