public
Description: Generates attr_accessors that encrypt and decrypt attributes
Homepage:
Clone URL: git://github.com/shuber/attr_encrypted.git
attr_encrypted / attr_encrypted.gemspec
100644 39 lines (32 sloc) 1.124 kb
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
37
38
39
Gem::Specification.new do |s|
  s.name = 'attr_encrypted'
  s.version = '1.0.8'
  s.date = '2009-01-13'
  
  s.summary = 'Generates attr_accessors that encrypt and decrypt attributes transparently'
  s.description = 'Generates attr_accessors that encrypt and decrypt attributes transparently'
  
  s.author = 'Sean Huber'
  s.email = 'shuber@huberry.com'
  s.homepage = 'http://github.com/shuber/attr_encrypted'
  
  s.has_rdoc = false
  s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.markdown']
  
  s.require_paths = ['lib']
  
  s.files = %w(
CHANGELOG
lib/attr_encrypted.rb
lib/huberry/attr_encrypted/adapters/active_record.rb
lib/huberry/attr_encrypted/adapters/data_mapper.rb
lib/huberry/attr_encrypted/adapters/sequel.rb
MIT-LICENSE
Rakefile
README.markdown
test/test_helper.rb
)
  
  s.test_files = %w(
test/active_record_test.rb
test/attr_encrypted_test.rb
test/data_mapper_test.rb
test/sequel_test.rb
)
  
  s.add_dependency('shuber-eigenclass', ['>= 1.0.1'])
  s.add_dependency('shuber-encryptor', ['>= 1.0.0'])
end