This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathruby_gpg.gemspec
54 lines (51 loc) · 1.54 KB
/
ruby_gpg.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ruby_gpg}
s.version = "0.3.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Justin Blake"]
s.date = %q{2010-07-16}
s.description = %q{Ruby wrapper for the gpg binary}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
".autotest",
".gitignore",
"CHANGELOG.markdown",
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"cucumber.yml",
"features/decrypt_string.feature",
"features/decryption.feature",
"features/encryption.feature",
"features/step_definitions/ruby_gpg_steps.rb",
"features/support/env.rb",
"lib/ruby_gpg.rb",
"ruby_gpg.gemspec",
"spec/ruby_gpg_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"test_keys/pubring.gpg",
"test_keys/secring.gpg",
"test_keys/trustdb.gpg"
]
s.homepage = %q{http://github.com/blaix/ruby_gpg}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Ruby wrapper for the gpg binary}
s.test_files = [
"spec/ruby_gpg_spec.rb",
"spec/spec_helper.rb"
]
s.add_development_dependency(%q<rake>, ["~> 10.0"])
s.add_development_dependency(%q<rspec>, ["~> 2.99.0"])
s.add_development_dependency(%q<yard>, [">= 0"])
s.add_development_dependency(%q<cucumber>, [">= 0"])
s.add_development_dependency(%q<mocha>, [">= 1.1.0"])
end