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'
s.description = 'Manipulate images with minimal use of memory via ImageMagick'
s.requirements << 'You must have ImageMagick 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.md', 'VERSION', 'MIT-LICENSE', 'Rakefile', 'lib/**/*']
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.5'
s.add_dependency 'logger'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.5'
s.metadata['changelog_uri'] = 'https://github.com/minimagick/minimagick/releases'
end
|