forked from feedreader/pluto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
39 lines (28 loc) · 1.29 KB
/
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
38
39
require 'hoe'
require './lib/pluto/version.rb'
Hoe.spec 'pluto' do
self.version = Pluto::VERSION
self.summary = 'pluto - Another Planet Generator'
self.description = 'pluto - Another Planet Generator (Lets You Build Web Pages from Published Web Feeds)'
self.urls = ['https://github.com/feedreader/pluto']
self.author = 'Gerald Bauer'
self.email = '[email protected]'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'HISTORY.md'
self.extra_deps = [
['pakman', '>= 0.5'],
['fetcher', '>= 0.4.3'], # use min. 0.4.3 - added cache/conditional GET support
['logutils', '>= 0.6'],
['feedutils', '>= 0.4.0'], # use min. 0.4.0 - added rss 2.0 - content:encoded; added fix for rss.item.guid missing; no more auto-summary in atom
['props', '>= 1.0.3'], # use min. 1.0.2 - added ini support
['textutils', '>= 0.7'], # use min. 0.7; moved hy/date helpers to gem; future: add some filters (for include/exclude)
['activityutils', '>= 0.1.0' ],
['gli', '>= 2.5.6']
## ['activerecord', '~> 3.2'], # NB: soft dependency, will include activesupport,etc.
]
self.licenses = ['Public Domain']
self.spec_extras = {
:required_ruby_version => '>= 1.9.2'
}
end