-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
41 lines (28 loc) · 845 Bytes
/
Rakefile
File metadata and controls
41 lines (28 loc) · 845 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
30
31
32
33
34
35
36
37
38
39
40
41
require 'hoe'
require './lib/whatson/version.rb'
###
# hack/ quick fix for broken intuit_values - overwrite with dummy
class Hoe
def intuit_values( input ); end
end
Hoe.spec 'whatson' do
self.version = WhatsOn::VERSION
self.summary = "whatson - what's on now command line tool (using the event.db machinery)"
self.description = summary
self.urls = { home: 'https://github.com/rubycocos/events' }
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 = 'CHANGELOG.md'
self.extra_deps = [
['eventdb', '>= 1.1.1'],
## 3rd party
['fetcher', '>= 0.4.5'],
['sqlite3']
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.2.2'
}
end