ruby-vips 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -1
- data/VERSION +1 -1
- data/lib/vips/call.rb +234 -170
- data/lib/vips/image.rb +48 -18
- data/lib/vips/interpolate.rb +2 -2
- data/lib/vips/kernel.rb +22 -0
- data/lib/vips/methods.rb +269 -119
- data/lib/vips/version.rb +1 -1
- data/ruby-vips.gemspec +6 -3
- metadata +9 -9
data/lib/vips/version.rb
CHANGED
data/ruby-vips.gemspec
CHANGED
@@ -12,11 +12,13 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.email = "jcupitt@gmail.com"
|
13
13
|
|
14
14
|
spec.summary = "Ruby extension for the vips image processing library."
|
15
|
-
spec.description = "ruby-vips is a
|
15
|
+
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."
|
16
16
|
spec.homepage = "http://github.com/jcupitt/ruby-vips"
|
17
17
|
spec.licenses = ["MIT"]
|
18
18
|
|
19
|
-
|
19
|
+
# gobject-introspection really needs 2.1, but it just about works on 2.0, the
|
20
|
+
# ruby that OS X is still bundling ... only ask for 2.0 to help OS X
|
21
|
+
spec.required_ruby_version = ">= 2.0"
|
20
22
|
spec.rubygems_version = "2.5.1"
|
21
23
|
spec.require_paths = ["lib"]
|
22
24
|
spec.extra_rdoc_files = [
|
@@ -29,7 +31,8 @@ Gem::Specification.new do |spec|
|
|
29
31
|
f.match(%r{^(test|spec|features)/})
|
30
32
|
end
|
31
33
|
|
32
|
-
|
34
|
+
# 3.0.9 has some breaking changes, stick with 3.0.7 for now
|
35
|
+
spec.add_runtime_dependency "gobject-introspection", ["3.0.8"]
|
33
36
|
|
34
37
|
spec.add_development_dependency "rake", ["~> 11.0"]
|
35
38
|
spec.add_development_dependency "rspec", ["~> 3.3"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-vips
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Cupitt
|
@@ -14,16 +14,16 @@ dependencies:
|
|
14
14
|
name: gobject-introspection
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.0.8
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.0.8
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,8 +108,8 @@ dependencies:
|
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '1.0'
|
111
|
-
description: ruby-vips is a
|
112
|
-
process huge images without
|
111
|
+
description: ruby-vips is a binding for the vips image processing library. It is extremely
|
112
|
+
fast and it can process huge images without loading the whole image in memory.
|
113
113
|
email: jcupitt@gmail.com
|
114
114
|
executables: []
|
115
115
|
extensions: []
|
@@ -154,6 +154,7 @@ files:
|
|
154
154
|
- lib/vips/image.rb
|
155
155
|
- lib/vips/interpolate.rb
|
156
156
|
- lib/vips/interpretation.rb
|
157
|
+
- lib/vips/kernel.rb
|
157
158
|
- lib/vips/methods.rb
|
158
159
|
- lib/vips/operation.rb
|
159
160
|
- lib/vips/version.rb
|
@@ -170,7 +171,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
170
171
|
requirements:
|
171
172
|
- - ">="
|
172
173
|
- !ruby/object:Gem::Version
|
173
|
-
version: '2.
|
174
|
+
version: '2.0'
|
174
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
175
176
|
requirements:
|
176
177
|
- - ">="
|
@@ -183,4 +184,3 @@ signing_key:
|
|
183
184
|
specification_version: 4
|
184
185
|
summary: Ruby extension for the vips image processing library.
|
185
186
|
test_files: []
|
186
|
-
has_rdoc:
|