-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathstrongbox.gemspec
26 lines (25 loc) · 1.08 KB
/
strongbox.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'strongbox'
Gem::Specification.new do |s|
s.name = "strongbox"
s.version = Strongbox::VERSION
s.summary = "Secures ActiveRecord fields with public key encryption."
s.authors = ["Spike Ilacqua"]
s.email = "[email protected]"
s.description = <<-EOF
Strongbox provides Public Key Encryption for ActiveRecord. By using a
public key sensitive information can be encrypted and stored automatically.
Once stored a password is required to access the information. dependencies
are specified in standard Ruby syntax.
EOF
s.homepage = "http://stuff-things.net/strongbox"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.add_runtime_dependency 'activerecord'
s.add_development_dependency 'thoughtbot-shoulda', '>= 2.9.0'
s.add_development_dependency 'sqlite3', '~> 1.3.7'
s.add_development_dependency 'rake', '>= 10.0.0'
s.add_development_dependency 'rdoc', '>= 2.4.0'
s.add_development_dependency 'test-unit', '>= 3.0.9'
end