ruby-vips 0.2.1 → 0.3.0
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.
- data/CHANGELOG.md +14 -0
- data/README.md +30 -17
- data/ext/extconf.rb +22 -2
- data/ext/header.c +2 -4
- data/ext/header.h +1 -0
- data/ext/image.c +7 -18
- data/ext/image.h +2 -1
- data/ext/image_arithmetic.c +0 -4
- data/ext/image_arithmetic.h +1 -1
- data/ext/image_boolean.c +0 -1
- data/ext/image_boolean.h +2 -2
- data/ext/image_colour.c +0 -3
- data/ext/image_conversion.c +2 -5
- data/ext/image_convolution.c +0 -3
- data/ext/image_freq_filt.c +0 -2
- data/ext/image_histograms_lut.c +3 -6
- data/ext/image_histograms_lut.h +1 -1
- data/ext/image_morphology.c +1 -4
- data/ext/image_mosaicing.c +0 -2
- data/ext/image_mosaicing.h +1 -0
- data/ext/image_relational.c +0 -2
- data/ext/image_resample.c +0 -4
- data/ext/interpolator.c +1 -1
- data/ext/interpolator.h +1 -0
- data/ext/mask.c +1 -3
- data/ext/mask.h +1 -0
- data/ext/reader.c +17 -163
- data/ext/reader.h +2 -0
- data/ext/ruby_vips.c +0 -13
- data/ext/ruby_vips.h +25 -2
- data/ext/writer.c +5 -25
- data/ext/writer.h +2 -0
- data/lib/vips/reader.rb +72 -62
- data/lib/vips/version.rb +1 -1
- data/ruby-vips.gemspec +6 -3
- data/ruby.supp +194 -0
- metadata +6 -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: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-07-
|
13
|
+
date: 2012-07-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rdoc
|
@@ -121,14 +121,17 @@ files:
|
|
121
121
|
- ext/mask.c
|
122
122
|
- ext/mask.h
|
123
123
|
- ext/reader.c
|
124
|
+
- ext/reader.h
|
124
125
|
- ext/ruby_vips.c
|
125
126
|
- ext/ruby_vips.h
|
126
127
|
- ext/writer.c
|
128
|
+
- ext/writer.h
|
127
129
|
- lib/vips.rb
|
128
130
|
- lib/vips/reader.rb
|
129
131
|
- lib/vips/version.rb
|
130
132
|
- lib/vips/writer.rb
|
131
133
|
- ruby-vips.gemspec
|
134
|
+
- ruby.supp
|
132
135
|
- LICENSE
|
133
136
|
- TODO
|
134
137
|
homepage: http://github.com/jcupitt/ruby-vips
|
@@ -146,7 +149,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
146
149
|
version: '0'
|
147
150
|
segments:
|
148
151
|
- 0
|
149
|
-
hash:
|
152
|
+
hash: 665410675
|
150
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
154
|
none: false
|
152
155
|
requirements:
|