-
Notifications
You must be signed in to change notification settings - Fork 0
/
mini_magick.gemspec
30 lines (24 loc) · 1.34 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
26
27
28
29
30
# -*- 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 = ['probablycorey@gmail.com', 'hcatlin@gmail.com', 'peter@nulayer.com', 'bensie@gmail.com', 'thiagown@gmail.com', 'janko.marohnic@gmail.com']
s.homepage = 'https://github.com/minimagick/minimagick'
s.files = Dir['README.rdoc', 'VERSION', 'MIT-LICENSE', 'Rakefile', 'lib/**/*']
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.5.0'
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'posix-spawn' unless RUBY_PLATFORM == 'java'
s.add_development_dependency 'webmock'
end