-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathRakefile
More file actions
32 lines (22 loc) · 739 Bytes
/
Rakefile
File metadata and controls
32 lines (22 loc) · 739 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
require 'hoe'
require './lib/pluto/update/version.rb'
Hoe.spec 'pluto-update' do
self.version = PlutoUpdate::VERSION
self.summary = "pluto-update - planet feed 'n' subscription updater"
self.description = summary
self.urls = ['https://github.com/feedreader/pluto']
self.author = 'Gerald Bauer'
self.email = 'feedreader@googlegroups.com'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'CHANGELOG.md'
self.extra_deps = [
['pluto-models', '>= 1.6.2'],
['pluto-feedfetcher', '>= 0.1.4'],
['opmlparser', '>= 1.0.0'],
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.2.2'
}
end