-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathencrypto.gemspec
24 lines (21 loc) · 1.08 KB
/
encrypto.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/encrypto/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'encrypto'
gem.version = Encrypto::VERSION
gem.date = '2013-12-04'
gem.summary = "A gem that supports encrypting personal data by using rbnacl and attr_encrypted"
gem.description = "A gem that supports encrypting personal data by using rbnacl and attr_encrypted"
gem.authors = ["Ruben", "Arne"]
gem.email = 'service@finalist.nl'
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.homepage = 'http://github.com/finalist/encrypto'
gem.add_runtime_dependency 'rbnacl', '~> 3.0', '>= 3.0.0'
gem.add_runtime_dependency 'rbnacl-libsodium'
gem.add_runtime_dependency 'attr_encrypted', '~> 1.3', '>= 1.3.1'
gem.add_development_dependency 'pry-nav', '~> 0.2', '>= 0.2.3'
gem.add_development_dependency 'rspec', '~> 2.14', '>= 2.14.1'
gem.add_development_dependency 'spec_coverage', '~> 0.0', '>= 0.0.5'
end