# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "kms_encrypted/version" Gem::Specification.new do |spec| spec.name = "kms_encrypted" spec.version = KmsEncrypted::VERSION spec.authors = ["Andrew Kane"] spec.email = ["andrew@chartkick.com"] spec.summary = "Simple, secure key management for attr_encrypted" spec.homepage = "https://github.com/ankane/kms_encrypted" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "activesupport" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "minitest" spec.add_development_dependency "sqlite3" spec.add_development_dependency "activerecord" spec.add_development_dependency "attr_encrypted" spec.add_development_dependency "aws-sdk-kms" spec.add_development_dependency "google-api-client" end