-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
33 lines (23 loc) · 757 Bytes
/
Rakefile
File metadata and controls
33 lines (23 loc) · 757 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
require 'hoe'
require './lib/cocos/version.rb'
Hoe.spec 'cocos' do
self.version = Cocos::VERSION
self.summary = "cocos (code commons) - auto-include quick-starter prelude & prolog"
self.description = summary
self.urls = { home: 'https://github.com/rubycocos/cocos' }
self.author = 'Gerald Bauer'
self.email = 'gerald.bauer@gmail.com'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'CHANGELOG.md'
self.licenses = ['Public Domain']
self.extra_deps = [
['csvreader', '>= 1.2.5'],
['tabreader', '>= 1.0.1'],
['iniparser', '>= 1.0.1'],
['webclient', '>= 0.2.2'],
]
self.spec_extras = {
required_ruby_version: '>= 2.2.2'
}
end