forked from pelle/ezcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathezcrypto.gemspec
68 lines (65 loc) · 1.77 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
67
68
# frozen_string_literal: true
require_relative 'lib/ezcrypto/version'
Gem::Specification.new do |spec|
spec.name = 'ezcrypto'
spec.version = EzCrypto::VERSION
spec.summary = 'EzCrypto - Simplified Crypto Library'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/appfolio/ezcrypto'
spec.description = 'EzCrypto is an easy to use wrapper around the poorly documented OpenSSL ruby library.'
spec.authors = ['Pelle Braendgaard', 'Micah Wedemeyer', 'Appfolio']
spec.files = %w[
rakefile
README.rdoc
README_ACTIVE_CRYPTO
README_DIGITAL_SIGNATURES
MIT-LICENSE
CHANGELOG.md
lib/active_crypto.rb
lib/ezcrypto.rb
lib/ezsig.rb
lib/trusted.pem
test/database.yml
test/digest_test.rb
test/dsakey.pem
test/dsapubkey.pem
test/dsig_test.rb
test/ezcrypto_test.rb
test/protectedsigner.pem
test/sf_intermediate.crt
test/store
test/testchild.pem
test/testchild.req
test/testpub.pem
test/testsigner.cert
test/testsigner.pem
test/valicert_class2_root.crt
test/agree2.com.cert
]
spec.extra_rdoc_files = %w[
CHANGELOG.md
README.rdoc
README_ACTIVE_CRYPTO
README_DIGITAL_SIGNATURES
]
spec.test_files = %w[
test/database.yml
test/digest_test.rb
test/dsakey.pem
test/dsapubkey.pem
test/dsig_test.rb
test/ezcrypto_test.rb
test/protectedsigner.pem
test/sf_intermediate.crt
test/store
test/testchild.pem
test/testchild.req
test/testpub.pem
test/testsigner.cert
test/testsigner.pem
test/valicert_class2_root.crt
test/agree2.com.cert
]
spec.required_ruby_version = Gem::Requirement.new('< 3.4')
spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/appfolio'
end