-
Notifications
You must be signed in to change notification settings - Fork 4
/
rubygems-openpgp.gemspec
38 lines (37 loc) · 1.63 KB
/
rubygems-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
35
36
37
38
Gem::Specification.new do |s|
s.name = 'rubygems-openpgp'
s.version = '0.7.0.pre'
s.date = '2013-03-18'
s.summary = "Sign gems via OpenPGP"
s.description = "Digitally sign gems via OpenPGP."
s.authors = ["Grant Olson"]
s.email = '[email protected]'
s.files = ["LICENSE",
"Rakefile",
"lib/rubygems_plugin.rb",
"lib/rubygems/commands/verify_command.rb",
"lib/rubygems/commands/sign_command.rb",
"lib/rubygems/gem_openpgp.rb",
"lib/rubygems/openpgp/gpg_helpers.rb",
"lib/rubygems/openpgp/options.rb",
"lib/rubygems/openpgp/signing.rb",
"lib/rubygems/openpgp/verification.rb",
"lib/rubygems/openpgp/keymaster.rb",
"lib/rubygems/openpgp/verify_plugins.rb",
"lib/rubygems/openpgp/sign_plugins.rb",
"lib/rubygems/openpgp/owner_check.rb",
"lib/rubygems/openpgp/gpg_options.rb",
"lib/rubygems/openpgp/openpgpexception.rb"]
s.test_files = ["test/test_keymaster.rb",
"test/test_rubygems-openpgp.rb",
"test/test_gpg_options.rb",
"test/pablo_escobar_seckey.asc",
"test/pablo_escobar_pubkey.asc",
"test/unsigned_hola-0.0.0.gem"]
s.homepage = 'https://github.com/grant-olson/rubygems-openpgp'
s.license = "BSD 3 Clause"
s.extra_rdoc_files = ['README.md']
s.add_dependency("gpg_status_parser",">= 0.4.0")
s.add_dependency("gems", ">= 0.7.1")
s.add_development_dependency("mocha", ">= 0.13.2")
end