-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
37 lines (28 loc) · 953 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
33
34
35
36
37
require 'hoe'
require './lib/scribelite/version.rb'
Hoe.spec 'scribelite' do
self.version = Scribelite::VERSION
self.summary = "scribelite gem - inscription / inscribe (ethscription calldata) database for ethereum & co; let's you query via sql and more"
self.description = summary
self.urls = { home: 'https://github.com/0xCompute/ethscribe' }
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 = [
['ethscribe'],
['calldata'], ## todo - check if included via ethscribe in the future?
['activerecord'],
['activerecord-utils'],
['logutils'],
['logutils-activerecord'],
['props'],
['props-activerecord'],
['sqlite3'],
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.3'
}
end