forked from danpal/attr_encryptor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
attr_encryptor.gemspec
36 lines (27 loc) · 1.12 KB
/
attr_encryptor.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
35
36
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'attr_encryptor/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'attr_encryptor'
s.version = AttrEncryptor::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 = 'Daniel Palacio'
s.email = '[email protected]'
s.homepage = 'http://github.com/danpal/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,spec,features}/*`.split("\n")
s.add_dependency('encryptor2', ['>= 1.0.0'])
s.add_development_dependency('activerecord', ['>= 2.0.0'])
s.add_development_dependency('datamapper')
s.add_development_dependency('mocha')
s.add_development_dependency('sequel')
s.add_development_dependency('dm-sqlite-adapter')
s.add_development_dependency('sqlite3')
end