-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathRakefile
32 lines (20 loc) · 850 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
require 'hoe'
require './lib/ethname/version.rb'
Hoe.spec 'ethname' do
self.version = Ethname::VERSION
self.summary = 'ethname - light-weight crowd-sourced "off-chain" ethereum name to (contract) address service / helper (incl. punks v1,v2,v3,v4; phunks v1,v2, synth punks, punk blocks, nouns, nouns descriptor, synth nouns, etc.) - yes, you can! - add more names / contracts via git ;-)'
self.description = summary
self.urls = { home: 'https://github.com/rubycocos/blockchain' }
self.author = 'Gerald Bauer'
self.email = 'wwwmake@googlegroups.com'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'CHANGELOG.md'
self.extra_deps = [
['cocos'],
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.3'
}
end