forked from sgonyea/jruby-pgp
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathruby-pgp.gemspec
More file actions
24 lines (20 loc) · 870 Bytes
/
ruby-pgp.gemspec
File metadata and controls
24 lines (20 loc) · 870 Bytes
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 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pgp/version'
Gem::Specification.new do |gem|
gem.name = 'ruby-pgp'
gem.version = PGP::VERSION
gem.licenses = ['MIT']
gem.authors = ['Camilo Sanchez']
gem.email = ['gems@tddapps.com']
gem.description = %q{PGP for Ruby}
gem.summary = %q{This is a GnuPG2 wrapper modeled after the jruby-pgp api}
gem.homepage = 'https://github.com/cshtdd/ruby-pgp'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency 'rake', '~> 13'
gem.add_development_dependency 'rspec', '~> 3.9.0'
end