-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
35 lines (24 loc) · 796 Bytes
/
Rakefile
File metadata and controls
35 lines (24 loc) · 796 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
require 'hoe'
###
# hack/ quick fix for broken intuit_values - overwrite with dummy
class Hoe
def intuit_values( input ); end
end
Hoe.spec 'gemverse' do
self.version = '0.1.1' # note: for now add version inline
self.summary = "gemverse gem - gem universe incl. rubygems API V1 wrapper lite; gem version cache, gem timeline reports, 'n' more"
self.description = summary
self.urls = { home: 'https://github.com/rubycocos/git' }
self.author = 'Gerald Bauer'
self.email = 'opensport@googlegroups.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 = [
['cocos'],
]
self.spec_extras = {
required_ruby_version: '>= 2.2.2'
}
end