fnando/encrypt_attr

View on GitHub
encrypt_attr.gemspec

Summary

Maintainability
Test Coverage
require "./lib/encrypt_attr/version"

Gem::Specification.new do |spec|
  spec.name          = "encrypt_attr"
  spec.version       = EncryptAttr::VERSION
  spec.authors       = ["Nando Vieira"]
  spec.email         = ["fnando.vieira@gmail.com"]
  spec.summary       = "Encrypt attributes using AES-256-CBC (or your custom encryption strategy). Works with and without ActiveRecord."
  spec.description   = spec.summary
  spec.homepage      = "http://rubygems.org/gems/encrypt_attr"
  spec.license       = "MIT"

  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.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "minitest"
  spec.add_development_dependency "minitest-utils"
  spec.add_development_dependency "sqlite3"
  spec.add_development_dependency "activerecord"
  spec.add_development_dependency "pry-meta"
  spec.add_development_dependency "codeclimate-test-reporter"
end