forked from attr-encrypted/attr_encrypted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattr_encrypted.gemspec
39 lines (32 loc) · 1.15 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
35
36
37
38
39
Gem::Specification.new do |s|
s.name = 'attr_encrypted'
s.version = '1.0.9.3'
s.date = '2016-06-01'
s.summary = 'Generates attr_accessors that encrypt and decrypt attributes transparently'
s.description = 'Fork of 1.0.9 to run with Rails 2.3 and Ruby 1.9.3'
s.author = 'Modifications by Sam Stickland (original author Sean Huber)'
s.email = '[email protected] (originally [email protected])'
s.homepage = 'http://github.com/samstickland/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('eigenclass', ['>= 1.0.1'])
s.add_dependency('encryptor', ['>= 1.0.0'])
end