forked from attr-encrypted/attr_encrypted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
attr_encrypted.gemspec
34 lines (25 loc) · 1.02 KB
/
attr_encrypted.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
28
29
30
31
32
33
34
# -*- 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.author = 'Sean Huber'
s.email = '[email protected]'
s.homepage = 'http://github.com/shuber/attr_encrypted'
s.has_rdoc = false
s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc']
s.require_paths = ['lib']
s.files = Dir['{bin,lib}/**/*'] + %w(MIT-LICENSE Rakefile README.rdoc)
s.test_files = Dir['test/**/*']
s.add_dependency('encryptor', ['>= 1.1.1'])
s.add_development_dependency('activerecord', ['>= 2.0.0'])
s.add_development_dependency('datamapper')
s.add_development_dependency('mocha')
s.add_development_dependency('sequel')
end