forked from minimagick/minimagick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mini_magick.gemspec
25 lines (20 loc) · 1.18 KB
/
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 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'mini_magick/version'
Gem::Specification.new do |s|
s.name = 'mini_magick'
s.version = MiniMagick.version
s.platform = Gem::Platform::RUBY
s.summary = 'Manipulate images with minimal use of memory via ImageMagick / GraphicsMagick'
s.description = 'Manipulate images with minimal use of memory via ImageMagick / GraphicsMagick'
s.requirements << 'You must have ImageMagick or GraphicsMagick installed'
s.licenses = ['MIT']
s.authors = ['Corey Johnson', 'Hampton Catlin', 'Peter Kieltyka', 'James Miller', 'Thiago Fernandes Massa', 'Janko Marohnić']
s.email = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']
s.homepage = 'https://github.com/minimagick/minimagick'
s.files = Dir['README.rdoc', 'VERSION', 'MIT-LICENSE', 'Rakefile', 'lib/**/*']
s.require_paths = ['lib']
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.1.0'
s.add_development_dependency 'posix-spawn' unless RUBY_PLATFORM == 'java'
end