forked from libvips/ruby-vips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-vips.gemspec
More file actions
96 lines (91 loc) · 2.82 KB
/
ruby-vips.gemspec
File metadata and controls
96 lines (91 loc) · 2.82 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ruby-vips"
s.version = "0.3.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Timothy Elliott", "John Cupitt"]
s.date = "2013-01-15"
s.description = "Ruby extension for the vips image processing library."
s.email = "jcupitt@gmail.com"
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
"LICENSE",
"README.md",
"TODO"
]
s.files = [
"CHANGELOG.md",
"Gemfile.lock",
"README.md",
"ext/extconf.rb",
"ext/header.c",
"ext/header.h",
"ext/image.c",
"ext/image.h",
"ext/image_arithmetic.c",
"ext/image_arithmetic.h",
"ext/image_boolean.c",
"ext/image_boolean.h",
"ext/image_colour.c",
"ext/image_colour.h",
"ext/image_conversion.c",
"ext/image_conversion.h",
"ext/image_convolution.c",
"ext/image_convolution.h",
"ext/image_freq_filt.c",
"ext/image_freq_filt.h",
"ext/image_histograms_lut.c",
"ext/image_histograms_lut.h",
"ext/image_morphology.c",
"ext/image_morphology.h",
"ext/image_mosaicing.c",
"ext/image_mosaicing.h",
"ext/image_relational.c",
"ext/image_relational.h",
"ext/image_resample.c",
"ext/image_resample.h",
"ext/interpolator.c",
"ext/interpolator.h",
"ext/mask.c",
"ext/mask.h",
"ext/reader.c",
"ext/reader.h",
"ext/ruby_vips.c",
"ext/ruby_vips.h",
"ext/writer.c",
"ext/writer.h",
"lib/vips.rb",
"lib/vips/reader.rb",
"lib/vips/version.rb",
"lib/vips/writer.rb",
"ruby-vips.gemspec",
"ruby.supp"
]
s.homepage = "http://github.com/jcupitt/ruby-vips"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.23"
s.summary = "ruby-vips is a ruby extension for vips. It is extremely fast and it can process huge images without requiring the entire image to be loaded into memory."
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
s.add_development_dependency(%q<bundler>, [">= 0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
s.add_development_dependency(%q<rspec>, [">= 0"])
else
s.add_dependency(%q<rdoc>, ["~> 3.12"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
s.add_dependency(%q<rspec>, [">= 0"])
end
else
s.add_dependency(%q<rdoc>, ["~> 3.12"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
s.add_dependency(%q<rspec>, [">= 0"])
end
end