pcboy/ncipher

View on GitHub
ncypher.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ncypher/version'

Gem::Specification.new do |spec|
  spec.name          = "ncypher"
  spec.version       = Ncypher::VERSION
  spec.authors       = ["David Hagege"]
  spec.email         = ["david.hagege@gmail.com"]

  spec.summary       = %q{Ncypher lets you encrypt/decrypt credentials in a safe and transparent way}
  spec.description   = %q{}
  spec.homepage      = "https://github.com/pcboy/ncypher"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.license       = 'WTFPL'

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 12.3.3"
  spec.add_development_dependency "minitest", "~> 5.0"

  spec.add_dependency 'rbnacl', '~> 7.0'
end