-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathRakefile
29 lines (19 loc) · 870 Bytes
/
Rakefile
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
require 'hoe'
require './lib/elliptic-lite/version.rb'
Hoe.spec 'elliptic-lite' do
self.version = ECCLite::VERSION
self.summary = "elliptic-lite - elliptic curve cryptography from scratch / zero - start with finite fields, add elliptic curve points and point addition and scalar multiplications, add the elliptic curve digital signature algorithm (ECDSA) using the secp256k1 curve / group to sign and verify messages and more"
self.description = summary
self.urls = { home: 'https://github.com/rubycocos/blockchain' }
self.author = 'Gerald Bauer'
self.email = '[email protected]'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'CHANGELOG.md'
self.extra_deps = [
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.3'
}
end