-
Notifications
You must be signed in to change notification settings - Fork 20
/
ezcrypto.gemspec
67 lines (65 loc) · 2.59 KB
/
ezcrypto.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
55
56
57
58
59
60
61
62
63
64
65
66
Gem::Specification.new do |s|
s.name = "ezcrypto"
s.version = "0.7.2"
s.date = "2009-3-10"
s.summary = "EzCrypto - Simplified Crypto Library"
s.email = "[email protected]"
s.homepage = "http://ezcrypto.rubyforge.org"
s.description = "EzCrypto is an easy to use wrapper around the poorly documented OpenSSL ruby library."
s.has_rdoc = true
s.authors = ["Pelle Braendgaard", "Micah Wedemeyer"]
s.files = [ "rakefile",
"README.rdoc",
"README_ACTIVE_CRYPTO",
"README_DIGITAL_SIGNATURES",
"MIT-LICENSE",
"CHANGELOG",
"init.rb",
"lib/active_crypto.rb",
"lib/ezcrypto.rb",
"lib/ezsig.rb",
"lib/trusted.pem",
"test/active_crypto_test.rb",
"test/association_key_holder_test.rb",
"test/database.yml",
"test/digest_test.rb",
"test/dsakey.pem",
"test/dsapubkey.pem",
"test/dsig_test.rb",
"test/encrypt_test.rb",
"test/ezcrypto_test.rb",
"test/key_holder_test.rb",
"test/protectedsigner.pem",
"test/sf_intermediate.crt",
"test/store",
"test/test_helper.rb",
"test/testchild.pem",
"test/testchild.req",
"test/testpub.pem",
"test/testsigner.cert",
"test/testsigner.pem",
"test/valicert_class2_root.crt",
"test/agree2.com.cert"]
s.extra_rdoc_files = ["CHANGELOG", "README.rdoc","README_ACTIVE_CRYPTO","README_DIGITAL_SIGNATURES"]
s.test_files = ["test/active_crypto_test.rb",
"test/association_key_holder_test.rb",
"test/database.yml",
"test/digest_test.rb",
"test/dsakey.pem",
"test/dsapubkey.pem",
"test/dsig_test.rb",
"test/encrypt_test.rb",
"test/ezcrypto_test.rb",
"test/key_holder_test.rb",
"test/protectedsigner.pem",
"test/sf_intermediate.crt",
"test/store",
"test/test_helper.rb",
"test/testchild.pem",
"test/testchild.req",
"test/testpub.pem",
"test/testsigner.cert",
"test/testsigner.pem",
"test/valicert_class2_root.crt",
"test/agree2.com.cert"]
end