forked from anirudhvr/hipaarails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hipaarails.gemspec
43 lines (32 loc) · 1.36 KB
/
hipaarails.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
40
41
42
43
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'hipaarails/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'hipaarails'
s.version = HIPAARails::Version.string
s.date = Date.today
s.summary = 'HIPAA compliance in Rails applications'
s.description = 'Allows Rails applications to easily encrypt' +
'protected health information (PHI) and audit accesses'
s.author = 'Anirudh Ramachandran'
s.email = 'anirudhvr@gmail.com'
s.homepage = 'http://github.com/oakenshield/hipaarails'
s.signing_key = '/home/ubuntu/.ssh/gem-private_key.pem'
s.cert_chain = ['/home/ubuntu/.ssh/gem-public_cert.pem']
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('rails', '~> 3')
s.add_dependency('attr_encrypted', ['~> 1.2.0'])
s.add_dependency('paper_trail', ['~> 2.6.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