-
Notifications
You must be signed in to change notification settings - Fork 12
/
krypt.gemspec
28 lines (21 loc) · 883 Bytes
/
krypt.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'krypt/version'
Gem::Specification.new do |s|
s.name = 'krypt'
s.version = Krypt::VERSION
s.author = 'Hiroshi Nakamura, Martin Bosslet'
s.email = '[email protected]'
s.homepage = 'https://github.com/krypt/krypt'
s.summary = 'Platform- and library-independent cryptography for Ruby'
s.description = 'krypt provides a unified framework for Ruby cryptography by offering a platform- and library-independent provider mechanism.'
s.required_ruby_version = '>= 1.9.3'
s.files = Dir.glob('{lib,spec,test}/**/*')
s.files += ['LICENSE']
s.test_files = Dir.glob('test/**/test_*.rb')
s.extra_rdoc_files = [ "README.md" ]
s.require_path = "lib"
s.license = 'MIT'
s.add_dependency 'ffi'
s.add_dependency 'krypt-core', Krypt::VERSION
end