forked from cryptominiun/centralbank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
32 lines (22 loc) · 904 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
30
31
32
require 'hoe'
require './lib/centralbank/version.rb'
Hoe.spec 'centralbank' do
self.version = Centralbank::VERSION
self.summary = 'centralbank - print your own money / cryptocurrency; run your own federated central bank nodes on the blockchain peer-to-peer over HTTP; revolutionize the world one block at a time'
self.description = summary
self.urls = ['https://github.com/openblockchains/centralbank']
self.author = 'Gerald Bauer'
self.email = 'ruby-talk@ruby-lang.org'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'History.md'
self.extra_deps = [
['sinatra', '>=2.0'],
['sass'], ## used for css style preprocessing (scss)
['blockchain-lite', '>=1.3.1'],
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.3'
}
end