forked from sdsykes/fastimage_resize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
21 lines (20 loc) · 783 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "fastimage_resize"
s.summary = "FastImage Resize - Image resizing fast and simple"
s.email = "[email protected]"
s.homepage = "http://github.com/sdsykes/fastimage_resize"
s.description = "FastImage Resize is an extremely light solution for resizing images in ruby by using libgd."
s.authors = ["Stephen Sykes"]
s.files = FileList["[A-Z]*", "{lib,test}/**/*"]
s.requirements << 'libgd, see www.libgd.org'
s.add_dependency('RubyInline', '>= 3.8.2')
s.add_dependency('fastimage', '>= 1.2.0')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://
gems.github.com"
end