forked from probablycorey/mini_magick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini_magick.gemspec
25 lines (19 loc) · 874 Bytes
/
mini_magick.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
version = File.read("VERSION").strip
Gem::Specification.new do |s|
s.name = "mini_magick"
s.version = version
s.platform = Gem::Platform::RUBY
s.summary = "Manipulate images with minimal use of memory via ImageMagick / GraphicsMagick"
s.description = ""
s.authors = ["Corey Johnson", "Hampton Catlin", "Peter Kieltyka"]
s.homepage = "http://github.com/probablycorey/mini_magick"
s.files = Dir['README.rdoc', 'VERSION', 'MIT-LICENSE', 'Rakefile', 'lib/**/*']
s.test_files = Dir['test/**/*']
s.require_paths = ["lib"]
s.add_runtime_dependency('subexec', ['~> 0.2.1'])
s.add_development_dependency('rake')
s.add_development_dependency('test-unit')
end