-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
35 lines (24 loc) · 903 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
require 'hoe'
require './lib/logutils/admin/version.rb'
Hoe.spec 'logutils-admin' do
self.version = LogDbAdmin::VERSION
self.summary = 'logutils-admin - Another Logger Addon for Browsing Logs in Database (LogDb, Log Model etc.)'
self.description = summary
self.urls = { home: 'https://github.com/rubycoco/core' }
self.author = 'Gerald Bauer'
self.email = '[email protected]'
# switch extension to .markdown for gihub formatting
# -- Note: auto-changed when included in manifest
self.readme_file = 'README.md'
self.history_file = 'HISTORY.md'
self.licenses = ['Public Domain']
self.extra_deps = [
['logutils', '>=0.6.1'],
['logutils-activerecord', '>=0.1.2'],
['activerecord'], # Note: will include activesupport,etc.
['sinatra']
]
self.spec_extras = {
required_ruby_version: '>= 1.9.2'
}
end