forked from libvips/ruby-vips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-vips.gemspec
45 lines (36 loc) · 1.54 KB
/
ruby-vips.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vips/version'
Gem::Specification.new do |spec|
spec.name = "ruby-vips"
spec.version = Vips::VERSION
spec.authors = ["John Cupitt"]
spec.date = "2016-06-07"
spec.email = "[email protected]"
spec.summary = "Ruby extension for the vips image processing library."
spec.description = "ruby-vips is a binding for the vips image processing library. It is extremely fast and it can process huge images without loading the whole image in memory."
spec.homepage = "http://github.com/jcupitt/ruby-vips"
spec.licenses = ["MIT"]
# gobject-introspection really needs 2.1, but it just about works on 2.0, the
# ruby that OS X is still bundling ... only ask for 2.0 to help OS X
spec.required_ruby_version = ">= 2.0"
spec.rubygems_version = "2.5.1"
spec.require_paths = ["lib"]
spec.extra_rdoc_files = [
"LICENSE.txt",
"README.md",
"TODO"
]
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
# 3.0.9 has some breaking changes, stick with 3.0.7 for now
spec.add_runtime_dependency "gobject-introspection", ["3.0.8"]
spec.add_development_dependency "rake", ["~> 11.0"]
spec.add_development_dependency "rspec", ["~> 3.3"]
spec.add_development_dependency "yard", ["~> 0.8"]
spec.add_development_dependency "redcarpet", ["~> 3.3"]
spec.add_development_dependency "github-markup", ["~> 1.4"]
spec.add_development_dependency "bundler", ["~> 1.0"]
end