# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'attr_encrypted/version' require 'date' Gem::Specification.new do |s| s.name = 'attr_encrypted' s.version = AttrEncrypted::Version.string s.date = Date.today s.summary = 'Encrypt and decrypt attributes' s.description = 'Generates attr_accessors that encrypt and decrypt attributes transparently' s.authors = ['Sean Huber', 'S. Brent Faulkner', 'William Monk', 'Stephen Aghaulor'] s.email = ['seah@shuber.io', 'sbfaulkner@gmail.com', 'billy.monk@gmail.com', 'saghaulor@gmail.com'] s.homepage = 'http://github.com/attr-encrypted/attr_encrypted' s.has_rdoc = false s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc'] s.require_paths = ['lib'] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- test/*`.split("\n") s.required_ruby_version = '>= 2.0.0' s.add_dependency('encryptor', ['~> 3.0.0']) # support for testing with specific active record version activerecord_version = if ENV.key?('ACTIVERECORD') "~> #{ENV['ACTIVERECORD']}" else '>= 2.0.0' end s.add_development_dependency('activerecord', activerecord_version) s.add_development_dependency('actionpack', activerecord_version) s.add_development_dependency('datamapper') s.add_development_dependency('rake') s.add_development_dependency('minitest') s.add_development_dependency('sequel') if defined?(RUBY_ENGINE) && RUBY_ENGINE.to_sym == :jruby s.add_development_dependency('activerecord-jdbcsqlite3-adapter') s.add_development_dependency('jdbc-sqlite3', '< 3.8.7') # 3.8.7 is nice and broke else s.add_development_dependency('sqlite3') end s.add_development_dependency('dm-sqlite-adapter') s.add_development_dependency('simplecov') s.add_development_dependency('simplecov-rcov') s.add_development_dependency("codeclimate-test-reporter") s.cert_chain = ['certs/saghaulor.pem'] s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/ s.post_install_message = "\n\n\nWARNING: Several insecure default options and features were deprecated in attr_encrypted v2.0.0.\n Additionally, there was a bug in Encryptor v2.0.0 that insecurely encrypted data when using an AES-*-GCM algorithm.\n This bug was fixed but introduced breaking changes between v2.x and v3.x.\n Please see the README for more information regarding upgrading to attr_encrypted v3.0.0.\n\n\n" end