forked from godfat/thumbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
35 lines (27 loc) · 741 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
# encoding: utf-8
begin
require 'bones'
rescue LoadError
abort '### Please install the "bones" gem ###'
end
ensure_in_path 'lib'
proj = 'thumbo'
require "#{proj}/version"
Bones{
version Thumbo::VERSION
# ruby_opts [''] # silence warning, too many in addressable and/or dm-core
depend_on 'rmagick', :version => '>=2.6.0'
name proj
url "http://github.com/godfat/#{proj}"
authors 'Lin Jen-Shin (aka godfat 真常)'
email 'godfat (XD) godfat.org'
history_file 'CHANGES'
readme_file 'README.rdoc'
ignore_file '.gitignore'
rdoc.include ['\w+']
}
CLEAN.include Dir['**/*.rbc']
task :default do
Rake.application.options.show_task_pattern = /./
Rake.application.display_tasks_and_comments
end