-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
38 lines (25 loc) · 928 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
32
33
34
35
36
37
38
require 'hoe'
require './lib/moonbirds/version.rb'
###
# hack/ quick fix for broken intuit_values - overwrite with dummy
class Hoe
def intuit_values( input ); end
end
Hoe.spec 'moonbirds' do
self.version = Pixelart::Module::Moonbirds::VERSION
self.summary = "moonbirds - generate your own 42×42 (or lil' 24×24) pixel owl images (off-blockchain) from text attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more"
self.description = summary
self.urls = { home: 'https://github.com/profilepic/text-to-image' }
self.author = 'Gerald Bauer'
self.email = '[email protected]'
# switch extension to .markdown for gihub formatting
self.readme_file = 'README.md'
self.history_file = 'CHANGELOG.md'
self.extra_deps = [
['artfactory', '>= 0.2.0'],
]
self.licenses = ['Public Domain']
self.spec_extras = {
required_ruby_version: '>= 2.3'
}
end