forked from dryruby/openpgp.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openpgp.gemspec
34 lines (30 loc) · 1.51 KB
/
openpgp.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
#!/usr/bin/env ruby -rubygems
# -*- encoding: utf-8 -*-
GEMSPEC = Gem::Specification.new do |gem|
gem.name = 'openpgp'
gem.version = '0.0.1.2'
gem.date = '2009-04-30'
gem.homepage = 'http://github.com/bendiken/openpgp'
gem.license = 'MIT' if gem.respond_to?(:license=)
gem.summary = 'A pure-Ruby implementation of the OpenPGP Message Format (RFC 4880).'
gem.description = <<-EOF
OpenPGP.rb is a pure-Ruby implementation of the OpenPGP Message Format (RFC 4880).
EOF
gem.rubyforge_project = 'openpgp'
gem.authors = ['Arto Bendiken']
gem.email = 'arto.bendiken@gmail.com'
gem.platform = Gem::Platform::RUBY
gem.files = %w(LICENSE README README.rdoc Rakefile VERSION bin/openpgp lib/openpgp.rb lib/openpgp/algorithm.rb lib/openpgp/armor.rb lib/openpgp/gnupg.rb lib/openpgp/message.rb lib/openpgp/packet.rb lib/openpgp/util.rb lib/openpgp/version.rb)
gem.files -= %w(README.rdoc) # only for GitHub
gem.bindir = %q(bin)
gem.executables = %w(openpgp)
gem.default_executable = gem.executables.first
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = %w()
gem.has_rdoc = false
gem.required_ruby_version = '>= 1.8.2'
gem.requirements = ['GnuPG >= 1.4.7 (not required, but enables extra functionality)']
gem.add_development_dependency 'rakefile'
gem.post_install_message = nil
end