forked from rubycocos/blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
29 lines (19 loc) · 743 Bytes
/
Copy pathRakefile
File metadata and controls
29 lines (19 loc) · 743 Bytes
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/blockchain-lite/version.rb'
Hoe.spec 'blockchain-lite' do
self.version = BlockchainLite::VERSION
self.summary = "blockchain-lite - build your own blockchain with crypto hashes - revolutionize the world with blockchains, blockchains, blockchains one block at a time"
self.description = summary
self.urls = ['https://github.com/openblockchains/blockchain.lite.rb']
self.author = 'Gerald Bauer'
self.email = 'wwwmake@googlegroups.com'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'HISTORY.md'
self.extra_deps = [
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.3'
}
end