- Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathRakefile
31 lines (21 loc) · 702 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
require'hoe'
require'./lib/pluto/tasks/version.rb'
Hoe.spec'pluto-tasks'do
self.version=PlutoTasks::VERSION
self.summary="pluto-tasks - planet rake tasks (setup, update, stats, etc.)"
self.description=summary
self.urls=['https://github.com/feedreader/pluto.tasks']
self.author='Gerald Bauer'
self.email='feedreader@googlegroups.com'
# switch extension to .markdown for gihub formatting
self.readme_file='README.md'
self.history_file='HISTORY.md'
self.extra_deps=[
['pluto-models','>= 1.4.0'],
['pluto-update','>= 1.6.0'],
]
self.licenses=['Public Domain']
self.spec_extras={
required_ruby_version: '>= 1.9.2'
}
end