rmagick 2.13.1 → 2.13.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rmagick might be problematic. Click here for more details.

@@ -1,7 +1,7 @@
1
1
  require "mkmf"
2
2
  require "date"
3
3
 
4
- RMAGICK_VERS = "2.13.1"
4
+ RMAGICK_VERS = "2.13.2"
5
5
  MIN_RUBY_VERS = "1.8.5"
6
6
  MIN_RUBY_VERS_NO = MIN_RUBY_VERS.tr(".","").to_i
7
7
  MIN_IM_VERS = "6.4.9"
@@ -125,7 +125,8 @@ end
125
125
  if RUBY_PLATFORM !~ /mswin|mingw/
126
126
 
127
127
  # Check for compiler. Extract first word so ENV['CC'] can be a program name with arguments.
128
- cc = (ENV["CC"] or Config::CONFIG["CC"] or "gcc").split(' ').first
128
+ config = defined?(RbConfig) ? ::RbConfig : ::Config
129
+ cc = (ENV["CC"] or config::CONFIG["CC"] or "gcc").split(' ').first
129
130
  unless find_executable(cc)
130
131
  exit_failure "No C compiler found in ${ENV['PATH']}. See mkmf.log for details."
131
132
  end
@@ -204,7 +205,7 @@ end
204
205
 
205
206
  if RUBY_PLATFORM !~ /mswin|mingw/
206
207
 
207
- unless have_library("MagickCore", "InitializeMagick", headers) || have_library("Magick", "InitializeMagick", headers) || have_library("Magick++","InitializeMagick",headers)
208
+ unless `Magick-config --libs`[/\bl\s*(MagickCore|Magick)\b/]
208
209
  exit_failure "Can't install RMagick #{RMAGICK_VERS}. " +
209
210
  "Can't find the ImageMagick library or one of the dependent libraries. " +
210
211
  "Check the mkmf.log file for more detailed information.\n"
@@ -244,6 +245,7 @@ have_func("snprintf", headers)
244
245
  "SetMagickMemoryMethods", # 6.4.1
245
246
  "SparseColorImage", # 6.3.6-?
246
247
  "SyncAuthenticPixels", # 6.4.5-6
248
+ "TransformImageColorspace", # 6.5.1
247
249
  "TransparentPaintImage", # 6.3.7-10
248
250
  "TransparentPaintImageChroma" # 6.4.5-6
249
251
  ].each do |func|
@@ -6,7 +6,7 @@
6
6
  * Changes since Nov. 2009 copyright © by Benjamin Thomas and Omer Bar-or
7
7
  *
8
8
  * @file rmimage.c
9
- * @version $Id: rmimage.c,v 1.360 2009/12/21 10:34:57 baror Exp $
9
+ * @version $Id: rmimage.c,v 1.361 2010/05/03 03:34:48 baror Exp $
10
10
  * @author Tim Hunter
11
11
  ******************************************************************************/
12
12
 
@@ -2993,7 +2993,11 @@ Image_colorspace_eq(VALUE self, VALUE colorspace)
2993
2993
 
2994
2994
  image = rm_check_frozen(self);
2995
2995
  VALUE_TO_ENUM(colorspace, new_cs, ColorspaceType);
2996
+ #if defined(HAVE_TRANSFORMIMAGECOLORSPACE)
2997
+ (void) TransformImageColorspace(image, new_cs);
2998
+ #else
2996
2999
  (void) SetImageColorspace(image, new_cs);
3000
+ #endif
2997
3001
 
2998
3002
  return self;
2999
3003
  }
@@ -1,7 +1,7 @@
1
1
  require 'date'
2
2
  Gem::Specification.new do |s|
3
3
  s.name = %q{rmagick}
4
- s.version = "2.13.1"
4
+ s.version = "2.13.2"
5
5
  s.date = Date.today.to_s
6
6
  s.summary = %q{Ruby binding to ImageMagick}
7
7
  s.description = %q{RMagick is an interface between Ruby and ImageMagick.}
data/setup.rb CHANGED
@@ -784,7 +784,7 @@ class ToplevelInstaller
784
784
  else
785
785
  require 'rbconfig'
786
786
  end
787
- ::Config::CONFIG
787
+ defined?(RbConfig) ? ::RbConfig::CONFIG : ::Config::CONFIG
788
788
  end
789
789
 
790
790
  def initialize(ardir_root, config)
@@ -51,18 +51,20 @@ while arg = ARGV.shift
51
51
  end
52
52
 
53
53
  require rbconfig # get specified/default rbconfig.rb
54
+ config = defined?(RbConfig) ? ::RbConfig : ::Config
55
+ version = config::CONFIG['ruby_version']
56
+ arch = config::CONFIG['arch']
54
57
 
55
- version = ::Config::CONFIG['ruby_version']
56
- arch = ::Config::CONFIG['arch']
57
-
58
- prefix ||= ::Config::CONFIG['prefix']
59
- site_ruby ||= ::Config::CONFIG['sitelibdir']
60
- so_dir ||= ::Config::CONFIG['sitearchdir']
58
+ prefix ||= config::CONFIG['prefix']
59
+ site_ruby ||= config::CONFIG['sitelibdir']
60
+ so_dir ||= config::CONFIG['sitearchdir']
61
61
  doc_dir ||= File.join(prefix, 'share', 'RMagick')
62
- dlext = ::Config::CONFIG['DLEXT']
62
+ dlext = config::CONFIG['DLEXT']
63
63
 
64
64
  FileUtils.safe_unlink File.join(site_ruby, 'RMagick.rb'), :verbose => true
65
65
  FileUtils.safe_unlink File.join(so_dir, 'RMagick.' + dlext), :verbose => true
66
+ puts site_ruby
67
+ puts doc_dir
66
68
 
67
69
  rmdir File.join(site_ruby, 'rvg'), true
68
70
  rmdir File.join(doc_dir, 'ex', 'images')
metadata CHANGED
@@ -1,412 +1,404 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: rmagick
3
- version: !ruby/object:Gem::Version
4
- version: 2.13.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.13.2
5
+ prerelease:
5
6
  platform: ruby
6
- authors:
7
+ authors:
7
8
  - Tim Hunter
8
9
  - Omer Bar-or
9
10
  - Benjamin Thomas
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
-
14
- date: 2010-04-05 00:00:00 -07:00
15
- default_executable:
14
+ date: 2013-02-02 00:00:00.000000000 Z
16
15
  dependencies: []
17
-
18
16
  description: RMagick is an interface between Ruby and ImageMagick.
19
17
  email: rmagick@rubyforge.org
20
18
  executables: []
21
-
22
- extensions:
19
+ extensions:
23
20
  - ext/RMagick/extconf.rb
24
21
  extra_rdoc_files: []
25
-
26
- files:
27
- - README.html
28
- - ext/RMagick/extconf.rb
29
- - ext/RMagick/rmimage.c
30
- - ext/RMagick/rmagick.c
31
- - ext/RMagick/rminfo.c
32
- - ext/RMagick/rmstruct.c
33
- - ext/RMagick/rmenum.c
34
- - ext/RMagick/rmdraw.c
35
- - ext/RMagick/MANIFEST
36
- - ext/RMagick/rmpixel.c
37
- - ext/RMagick/rmfill.c
38
- - ext/RMagick/rmutil.c
39
- - ext/RMagick/rmilist.c
40
- - ext/RMagick/rmmontage.c
41
- - ext/RMagick/rmmain.c
42
- - ext/RMagick/rmagick.h
43
- - rmagick.gemspec
44
- - Doxyfile
45
- - examples/rotating_text.rb
46
- - examples/histogram.rb
47
- - examples/vignette.rb
48
- - examples/find_similar_region.rb
49
- - examples/identify.rb
50
- - examples/import_export.rb
51
- - examples/spinner.rb
52
- - examples/describe.rb
53
- - examples/constitute.rb
54
- - examples/pattern_fill.rb
55
- - examples/thumbnail.rb
56
- - examples/crop_with_gravity.rb
57
- - examples/demo.rb
58
- - examples/image_opacity.rb
22
+ files:
23
+ - build_tarball.rake
24
+ - setup.rb
59
25
  - metaconfig
60
- - post-install.rb
61
- - post-clean.rb
62
- - lib/RMagick.rb
63
26
  - lib/rvg/paint.rb
64
- - lib/rvg/stylable.rb
65
- - lib/rvg/clippath.rb
66
- - lib/rvg/units.rb
67
- - lib/rvg/deep_equal.rb
68
27
  - lib/rvg/stretchable.rb
69
- - lib/rvg/pathdata.rb
70
- - lib/rvg/rvg.rb
71
28
  - lib/rvg/transformable.rb
29
+ - lib/rvg/stylable.rb
72
30
  - lib/rvg/text.rb
73
31
  - lib/rvg/describable.rb
74
- - lib/rvg/embellishable.rb
32
+ - lib/rvg/deep_equal.rb
33
+ - lib/rvg/units.rb
75
34
  - lib/rvg/misc.rb
35
+ - lib/rvg/rvg.rb
36
+ - lib/rvg/embellishable.rb
37
+ - lib/rvg/pathdata.rb
38
+ - lib/rvg/clippath.rb
76
39
  - lib/rvg/container.rb
77
- - ChangeLog
40
+ - lib/RMagick.rb
78
41
  - README-Mac-OSX.txt
42
+ - ChangeLog
79
43
  - uninstall.rb
44
+ - post-clean.rb
45
+ - examples/rotating_text.rb
46
+ - examples/demo.rb
47
+ - examples/histogram.rb
48
+ - examples/thumbnail.rb
49
+ - examples/spinner.rb
50
+ - examples/identify.rb
51
+ - examples/crop_with_gravity.rb
52
+ - examples/import_export.rb
53
+ - examples/find_similar_region.rb
54
+ - examples/constitute.rb
55
+ - examples/describe.rb
56
+ - examples/pattern_fill.rb
57
+ - examples/vignette.rb
58
+ - examples/image_opacity.rb
59
+ - ext/RMagick/MANIFEST
60
+ - ext/RMagick/rmdraw.c
61
+ - ext/RMagick/extconf.rb
62
+ - ext/RMagick/rmpixel.c
63
+ - ext/RMagick/rmmain.c
64
+ - ext/RMagick/rminfo.c
65
+ - ext/RMagick/rmilist.c
66
+ - ext/RMagick/rmagick.h
67
+ - ext/RMagick/rmfill.c
68
+ - ext/RMagick/rmenum.c
69
+ - ext/RMagick/rmutil.c
70
+ - ext/RMagick/rmagick.c
71
+ - ext/RMagick/rmimage.c
72
+ - ext/RMagick/rmstruct.c
73
+ - ext/RMagick/rmmontage.c
80
74
  - post-setup.rb
81
- - setup.rb
82
- - doc/rvgclip.html
83
- - doc/rvgpattern.html
84
- - doc/rvgtspan.html
85
- - doc/rvgshape.html
86
- - doc/rvgstyle.html
75
+ - Doxyfile
76
+ - post-install.rb
77
+ - README.html
78
+ - rmagick.gemspec
87
79
  - doc/constants.html
88
- - doc/usage.html
89
- - doc/rvgtut.html
90
80
  - doc/ilist.html
91
- - doc/rvguse.html
81
+ - doc/rvgtspan.html
82
+ - doc/usage.html
92
83
  - doc/rvggroup.html
93
- - doc/draw.html
94
- - doc/index.html
95
- - doc/image3.html
96
- - doc/scripts/stripeTables.js
97
- - doc/scripts/doc.js
98
- - doc/rvg.html
99
- - doc/rvgimage.html
100
- - doc/info.html
101
- - doc/imageattrs.html
102
- - doc/rvgtext.html
103
- - doc/optequiv.html
104
- - doc/comtasks.html
105
- - doc/image1.html
106
- - doc/magick.html
107
- - doc/rvgxform.html
108
- - doc/css/popup.css
109
- - doc/css/doc.css
110
- - doc/css/ref.css
111
- - doc/image2.html
112
- - doc/imusage.html
113
- - doc/struct.html
114
- - doc/ex/resize_to_fit.rb
115
- - doc/ex/tref01.rb
116
- - doc/ex/stroke_width.rb
117
- - doc/ex/shade.rb
118
- - doc/ex/rvg_linecap.rb
119
- - doc/ex/unsharp_mask.rb
120
- - doc/ex/image.rb
121
- - doc/ex/frame.rb
122
- - doc/ex/stroke_dasharray.rb
123
- - doc/ex/circle01.rb
124
- - doc/ex/drawcomp.rb
125
- - doc/ex/transpose.rb
126
- - doc/ex/pattern1.rb
127
- - doc/ex/polyline.rb
128
- - doc/ex/contrast.rb
129
- - doc/ex/tspan01.rb
130
- - doc/ex/cycle_colormap.rb
131
- - doc/ex/texture_floodfill.rb
132
- - doc/ex/axes.rb
133
- - doc/ex/rvg_opacity.rb
84
+ - doc/ex/raise.rb
85
+ - doc/ex/polyline01.rb
86
+ - doc/ex/mono.rb
87
+ - doc/ex/stroke_linejoin.rb
88
+ - doc/ex/baseline_shift01.rb
89
+ - doc/ex/dissolve.rb
90
+ - doc/ex/opacity.rb
91
+ - doc/ex/shadow.rb
134
92
  - doc/ex/gradientfill.rb
135
- - doc/ex/cubic02.rb
136
- - doc/ex/OrigCoordSys.rb
137
- - doc/ex/watermark.rb
93
+ - doc/ex/splice.rb
94
+ - doc/ex/morph.rb
95
+ - doc/ex/blur_image.rb
96
+ - doc/ex/image.rb
97
+ - doc/ex/cbezier4.rb
98
+ - doc/ex/text_antialias.rb
99
+ - doc/ex/text_align.rb
100
+ - doc/ex/gravity.rb
101
+ - doc/ex/tspan03.rb
102
+ - doc/ex/evenodd.rb
103
+ - doc/ex/affine_transform.rb
104
+ - doc/ex/radial_blur.rb
105
+ - doc/ex/tref01.rb
106
+ - doc/ex/chop.rb
107
+ - doc/ex/flop.rb
108
+ - doc/ex/color_reset.rb
109
+ - doc/ex/coalesce.rb
110
+ - doc/ex/solarize.rb
138
111
  - doc/ex/enhance.rb
139
- - doc/ex/trim.rb
140
- - doc/ex/adaptive_threshold.rb
141
- - doc/ex/modulate.rb
142
- - doc/ex/cbezier5.rb
112
+ - doc/ex/affine.rb
113
+ - doc/ex/posterize.rb
114
+ - doc/ex/path.rb
115
+ - doc/ex/motion_blur.rb
116
+ - doc/ex/stroke_fill.rb
117
+ - doc/ex/cubic01.rb
118
+ - doc/ex/fonts.rb
119
+ - doc/ex/edge.rb
120
+ - doc/ex/cbezier3.rb
121
+ - doc/ex/normalize.rb
122
+ - doc/ex/oil_paint.rb
123
+ - doc/ex/text.rb
124
+ - doc/ex/fill_pattern.rb
125
+ - doc/ex/skewy.rb
126
+ - doc/ex/transparent.rb
127
+ - doc/ex/ordered_dither.rb
128
+ - doc/ex/matte_fill_to_border.rb
129
+ - doc/ex/color_fill_to_border.rb
130
+ - doc/ex/circle01.rb
131
+ - doc/ex/color_floodfill.rb
132
+ - doc/ex/translate.rb
133
+ - doc/ex/swirl.rb
134
+ - doc/ex/Use03.rb
135
+ - doc/ex/hatchfill.rb
136
+ - doc/ex/PreserveAspectRatio.rb
137
+ - doc/ex/negate.rb
138
+ - doc/ex/InitialCoords.rb
139
+ - doc/ex/line.rb
140
+ - doc/ex/rvg_linejoin.rb
141
+ - doc/ex/resize_to_fill.rb
142
+ - doc/ex/flip.rb
143
143
  - doc/ex/rotate.rb
144
- - doc/ex/nonzero.rb
145
- - doc/ex/rect01.rb
146
- - doc/ex/images/spin.gif
147
- - doc/ex/images/Button_N.gif
144
+ - doc/ex/tspan01.rb
145
+ - doc/ex/shave.rb
148
146
  - doc/ex/images/duck14.gif
147
+ - doc/ex/images/Button_P.gif
148
+ - doc/ex/images/Ballerina.jpg
149
+ - doc/ex/images/Yellow_Rose.miff
150
+ - doc/ex/images/Button_X.gif
151
+ - doc/ex/images/Button_C.gif
152
+ - doc/ex/images/Button_F.gif
153
+ - doc/ex/images/spin.gif
154
+ - doc/ex/images/Button_M.gif
155
+ - doc/ex/images/Button_9.gif
156
+ - doc/ex/images/duck7.gif
157
+ - doc/ex/images/duck10.gif
158
+ - doc/ex/images/Red_Rocks.jpg
159
+ - doc/ex/images/Button_E.gif
160
+ - doc/ex/images/duck3.gif
161
+ - doc/ex/images/Gold_Statue.jpg
149
162
  - doc/ex/images/Button_I.gif
150
- - doc/ex/images/Violin.jpg
151
- - doc/ex/images/Ballerina3.jpg
152
- - doc/ex/images/Button_Y.gif
163
+ - doc/ex/images/Button_Q.gif
164
+ - doc/ex/images/notimplemented.gif
165
+ - doc/ex/images/duck1.gif
166
+ - doc/ex/images/duck2.gif
167
+ - doc/ex/images/Flower_Hat.jpg
168
+ - doc/ex/images/Button_L.gif
169
+ - doc/ex/images/Button_2.gif
170
+ - doc/ex/images/graydient230x6.gif
171
+ - doc/ex/images/duck0.gif
153
172
  - doc/ex/images/Button_W.gif
173
+ - doc/ex/images/smile.miff
174
+ - doc/ex/images/duck8.gif
175
+ - doc/ex/images/duck11.gif
176
+ - doc/ex/images/Button_D.gif
177
+ - doc/ex/images/No.wmf
154
178
  - doc/ex/images/Apple.miff
155
- - doc/ex/images/duck10.gif
156
- - doc/ex/images/Button_2.gif
157
- - doc/ex/images/Red_Rocks.jpg
158
- - doc/ex/images/Button_3.gif
159
179
  - doc/ex/images/Button_G.gif
160
- - doc/ex/images/Snake.wmf
161
- - doc/ex/images/Button_6.gif
162
- - doc/ex/images/Button_J.gif
163
- - doc/ex/images/duck11.gif
164
180
  - doc/ex/images/Button_Z.gif
165
- - doc/ex/images/Button_D.gif
166
- - doc/ex/images/Button_B.gif
167
- - doc/ex/images/Shorts.jpg
168
- - doc/ex/images/Button_U.gif
169
- - doc/ex/images/Rocks_On_Beach.miff
170
- - doc/ex/images/Button_9.gif
171
- - doc/ex/images/Button_M.gif
172
- - doc/ex/images/duck9.gif
173
- - doc/ex/images/notimplemented.gif
181
+ - doc/ex/images/Button_1.gif
182
+ - doc/ex/images/Button_H.gif
183
+ - doc/ex/images/Button_A.gif
184
+ - doc/ex/images/Hot_Air_Balloons.jpg
174
185
  - doc/ex/images/duck15.gif
175
- - doc/ex/images/smile.miff
186
+ - doc/ex/images/Button_R.gif
187
+ - doc/ex/images/Button_Y.gif
188
+ - doc/ex/images/Button_V.gif
189
+ - doc/ex/images/model.miff
190
+ - doc/ex/images/Hot_Air_Balloons_H.jpg
191
+ - doc/ex/images/Button_J.gif
192
+ - doc/ex/images/Rocks_On_Beach.miff
193
+ - doc/ex/images/Polynesia.jpg
194
+ - doc/ex/images/Button_4.gif
195
+ - doc/ex/images/Button_6.gif
196
+ - doc/ex/images/Button_U.gif
176
197
  - doc/ex/images/Button_0.gif
177
- - doc/ex/images/duck13.gif
178
- - doc/ex/images/Button_5.gif
179
- - doc/ex/images/Button_A.gif
180
- - doc/ex/images/Yellow_Rose.miff
181
- - doc/ex/images/duck3.gif
198
+ - doc/ex/images/Button_3.gif
199
+ - doc/ex/images/Button_S.gif
200
+ - doc/ex/images/duck4.gif
201
+ - doc/ex/images/Shorts.jpg
182
202
  - doc/ex/images/Coffee.wmf
183
- - doc/ex/images/Button_H.gif
184
- - doc/ex/images/Hot_Air_Balloons_H.jpg
185
- - doc/ex/images/Button_7.gif
186
- - doc/ex/images/Button_C.gif
187
- - doc/ex/images/duck8.gif
188
- - doc/ex/images/duck7.gif
189
- - doc/ex/images/Button_T.gif
190
- - doc/ex/images/Button_E.gif
191
- - doc/ex/images/Button_Q.gif
192
- - doc/ex/images/Button_O.gif
193
- - doc/ex/images/Flower_Hat.jpg
194
- - doc/ex/images/Button_8.gif
195
- - doc/ex/images/duck2.gif
196
- - doc/ex/images/Button_1.gif
197
- - doc/ex/images/duck0.gif
198
- - doc/ex/images/Button_X.gif
199
- - doc/ex/images/Button_K.gif
203
+ - doc/ex/images/big-duck.gif
204
+ - doc/ex/images/duck9.gif
205
+ - doc/ex/images/Ballerina3.jpg
206
+ - doc/ex/images/duck5.gif
207
+ - doc/ex/images/Button_5.gif
200
208
  - doc/ex/images/logo400x83.gif
201
- - doc/ex/images/Gold_Statue.jpg
202
- - doc/ex/images/Button_V.gif
203
- - doc/ex/images/graydient230x6.gif
209
+ - doc/ex/images/Snake.wmf
204
210
  - doc/ex/images/duck12.gif
211
+ - doc/ex/images/Button_8.gif
212
+ - doc/ex/images/Button_N.gif
213
+ - doc/ex/images/Button_7.gif
214
+ - doc/ex/images/Button_K.gif
205
215
  - doc/ex/images/duck6.gif
216
+ - doc/ex/images/Violin.jpg
217
+ - doc/ex/images/Leaf.miff
206
218
  - doc/ex/images/duck.gif
207
- - doc/ex/images/Polynesia.jpg
208
- - doc/ex/images/Button_S.gif
209
- - doc/ex/images/Button_F.gif
210
- - doc/ex/images/No.wmf
211
- - doc/ex/images/duck5.gif
219
+ - doc/ex/images/Button_O.gif
220
+ - doc/ex/images/Button_T.gif
221
+ - doc/ex/images/Button_B.gif
222
+ - doc/ex/images/duck13.gif
212
223
  - doc/ex/images/Cheetah.jpg
213
- - doc/ex/images/Button_4.gif
214
- - doc/ex/images/Ballerina.jpg
215
- - doc/ex/images/duck1.gif
216
- - doc/ex/images/Leaf.miff
217
- - doc/ex/images/Button_P.gif
218
- - doc/ex/images/Button_R.gif
219
- - doc/ex/images/Button_L.gif
220
- - doc/ex/images/Hot_Air_Balloons.jpg
221
- - doc/ex/images/model.miff
222
- - doc/ex/images/big-duck.gif
223
- - doc/ex/images/duck4.gif
224
- - doc/ex/pattern2.rb
225
- - doc/ex/texturefill.rb
226
- - doc/ex/cbezier6.rb
227
- - doc/ex/colors.rb
228
- - doc/ex/gravity.rb
229
- - doc/ex/vignette.rb
230
- - doc/ex/arc.rb
231
- - doc/ex/composite_layers.rb
232
- - doc/ex/sparse_color.rb
233
- - doc/ex/preview.rb
234
- - doc/ex/negate.rb
235
- - doc/ex/splice.rb
236
- - doc/ex/cbezier3.rb
237
- - doc/ex/dissolve.rb
238
- - doc/ex/composite.rb
239
- - doc/ex/swirl.rb
240
- - doc/ex/rectangle.rb
224
+ - doc/ex/transpose.rb
225
+ - doc/ex/cbezier5.rb
226
+ - doc/ex/drawcomp.rb
227
+ - doc/ex/trim.rb
228
+ - doc/ex/color_histogram.rb
229
+ - doc/ex/smile.rb
230
+ - doc/ex/clip_path.rb
231
+ - doc/ex/frame.rb
232
+ - doc/ex/remap_images.rb
233
+ - doc/ex/ViewBox.rb
234
+ - doc/ex/emboss.rb
235
+ - doc/ex/stroke_dasharray.rb
236
+ - doc/ex/border.rb
237
+ - doc/ex/stroke_width.rb
238
+ - doc/ex/crop_with_gravity.rb
239
+ - doc/ex/polygon.rb
240
+ - doc/ex/arcpath.rb
241
+ - doc/ex/rvg_pattern.rb
242
+ - doc/ex/level_colors.rb
243
+ - doc/ex/mask.rb
244
+ - doc/ex/matte_replace.rb
241
245
  - doc/ex/writing_mode01.rb
242
- - doc/ex/rvg_linejoin.rb
243
- - doc/ex/polygon01.rb
244
- - doc/ex/rvg_clippath.rb
245
- - doc/ex/coalesce.rb
246
- - doc/ex/color_fill_to_border.rb
247
- - doc/ex/shear.rb
248
- - doc/ex/average.rb
249
- - doc/ex/PreserveAspectRatio.rb
250
- - doc/ex/flip.rb
246
+ - doc/ex/bilevel_channel.rb
247
+ - doc/ex/mosaic.rb
251
248
  - doc/ex/quad01.rb
252
- - doc/ex/arcs02.rb
253
- - doc/ex/sketch.rb
254
- - doc/ex/polyline01.rb
249
+ - doc/ex/font_styles.rb
250
+ - doc/ex/Use01.rb
251
+ - doc/ex/to_blob.rb
252
+ - doc/ex/get_multiline_type_metrics.rb
253
+ - doc/ex/add_noise.rb
254
+ - doc/ex/Use02.rb
255
+ - doc/ex/flatten_images.rb
256
+ - doc/ex/contrast.rb
257
+ - doc/ex/texturefill.rb
258
+ - doc/ex/writing_mode02.rb
255
259
  - doc/ex/group.rb
256
- - doc/ex/triangle01.rb
257
- - doc/ex/morph.rb
258
- - doc/ex/segment.rb
259
- - doc/ex/rotate_f.rb
260
- - doc/ex/rvg_stroke_dasharray.rb
261
- - doc/ex/Use03.rb
262
- - doc/ex/cubic01.rb
263
- - doc/ex/hatchfill.rb
264
- - doc/ex/fill_pattern.rb
265
- - doc/ex/motion_blur.rb
266
- - doc/ex/level.rb
267
- - doc/ex/color_reset.rb
268
- - doc/ex/opacity.rb
269
- - doc/ex/channel.rb
270
- - doc/ex/color_floodfill.rb
271
- - doc/ex/gaussian_blur.rb
272
- - doc/ex/clip_path.rb
273
- - doc/ex/cbezier4.rb
260
+ - doc/ex/implode.rb
261
+ - doc/ex/crop.rb
262
+ - doc/ex/sparse_color.rb
263
+ - doc/ex/polaroid.rb
264
+ - doc/ex/stegano.rb
265
+ - doc/ex/roundrect.rb
274
266
  - doc/ex/rubyname.rb
267
+ - doc/ex/rvg_clippath.rb
268
+ - doc/ex/Skew.rb
269
+ - doc/ex/colorize.rb
270
+ - doc/ex/texture_fill_to_border.rb
271
+ - doc/ex/NewCoordSys.rb
272
+ - doc/ex/qbezierpath.rb
273
+ - doc/ex/reduce_noise.rb
274
+ - doc/ex/cbezier6.rb
275
+ - doc/ex/adaptive_threshold.rb
276
+ - doc/ex/roll.rb
277
+ - doc/ex/modulate.rb
275
278
  - doc/ex/ellipse.rb
276
- - doc/ex/RotateScale.rb
279
+ - doc/ex/equalize.rb
280
+ - doc/ex/grav.rb
281
+ - doc/ex/cycle_colormap.rb
282
+ - doc/ex/sketch.rb
283
+ - doc/ex/spread.rb
284
+ - doc/ex/pattern2.rb
285
+ - doc/ex/random_threshold_channel.rb
286
+ - doc/ex/stroke_linecap.rb
287
+ - doc/ex/axes.rb
288
+ - doc/ex/rvg_linecap.rb
289
+ - doc/ex/wet_floor.rb
290
+ - doc/ex/wave.rb
291
+ - doc/ex/colors.rb
292
+ - doc/ex/quantize-m.rb
293
+ - doc/ex/text01.rb
294
+ - doc/ex/unsharp_mask.rb
295
+ - doc/ex/composite_tiled.rb
296
+ - doc/ex/watermark.rb
297
+ - doc/ex/get_pixels.rb
298
+ - doc/ex/rect02.rb
299
+ - doc/ex/composite_layers.rb
300
+ - doc/ex/rvg_stroke_dasharray.rb
277
301
  - doc/ex/arcs01.rb
278
- - doc/ex/circle.rb
279
- - doc/ex/ordered_dither.rb
280
- - doc/ex/skewy.rb
281
- - doc/ex/evenodd.rb
282
- - doc/ex/border.rb
283
- - doc/ex/implode.rb
302
+ - doc/ex/bounding_box.rb
303
+ - doc/ex/line01.rb
304
+ - doc/ex/transverse.rb
284
305
  - doc/ex/negate_channel.rb
285
- - doc/ex/roll.rb
286
- - doc/ex/add_noise.rb
287
- - doc/ex/bilevel_channel.rb
288
- - doc/ex/normalize.rb
289
- - doc/ex/tspan03.rb
290
- - doc/ex/path.rb
291
- - doc/ex/quantize-m.rb
292
- - doc/ex/rvg_pattern.rb
293
- - doc/ex/compose_mask.rb
294
- - doc/ex/tspan02.rb
295
- - doc/ex/text_antialias.rb
296
- - doc/ex/flatten_images.rb
297
- - doc/ex/polygon.rb
298
- - doc/ex/mono.rb
299
- - doc/ex/texture_fill_to_border.rb
300
- - doc/ex/resize_to_fill.rb
301
- - doc/ex/shave.rb
302
- - doc/ex/blur_image.rb
303
- - doc/ex/get_multiline_type_metrics.rb
304
- - doc/ex/polaroid.rb
305
- - doc/ex/affine.rb
306
- - doc/ex/crop.rb
307
- - doc/ex/shadow.rb
308
- - doc/ex/drop_shadow.rb
309
- - doc/ex/get_type_metrics.rb
310
- - doc/ex/wet_floor.rb
311
- - doc/ex/color_histogram.rb
312
- - doc/ex/remap_images.rb
313
- - doc/ex/median_filter.rb
306
+ - doc/ex/rotate_f.rb
307
+ - doc/ex/level.rb
308
+ - doc/ex/remap.rb
309
+ - doc/ex/pattern1.rb
310
+ - doc/ex/shear.rb
311
+ - doc/ex/vignette.rb
312
+ - doc/ex/viewex.rb
313
+ - doc/ex/text_styles.rb
314
+ - doc/ex/RotateScale.rb
314
315
  - doc/ex/nested_rvg.rb
315
- - doc/ex/spread.rb
316
- - doc/ex/ellipse01.rb
316
+ - doc/ex/matte_floodfill.rb
317
+ - doc/ex/preview.rb
318
+ - doc/ex/arcs02.rb
319
+ - doc/ex/skewx.rb
317
320
  - doc/ex/text_undercolor.rb
318
- - doc/ex/stegano.rb
319
- - doc/ex/reduce_noise.rb
320
- - doc/ex/viewex.rb
321
- - doc/ex/translate.rb
322
- - doc/ex/font_styles.rb
323
- - doc/ex/stroke_linecap.rb
324
- - doc/ex/text.rb
325
- - doc/ex/ViewBox.rb
326
- - doc/ex/stroke_linejoin.rb
327
- - doc/ex/threshold.rb
321
+ - doc/ex/polygon01.rb
322
+ - doc/ex/rvg_opacity.rb
323
+ - doc/ex/arc.rb
324
+ - doc/ex/channel.rb
325
+ - doc/ex/drop_shadow.rb
326
+ - doc/ex/triangle01.rb
327
+ - doc/ex/tspan02.rb
328
+ - doc/ex/texture_floodfill.rb
328
329
  - doc/ex/sepiatone.rb
329
- - doc/ex/posterize.rb
330
- - doc/ex/affine_transform.rb
331
- - doc/ex/colorize.rb
332
- - doc/ex/Use02.rb
333
- - doc/ex/crop_with_gravity.rb
334
- - doc/ex/random_threshold_channel.rb
335
- - doc/ex/skewx.rb
336
- - doc/ex/raise.rb
337
- - doc/ex/grav.rb
338
- - doc/ex/text_styles.rb
339
- - doc/ex/level_colors.rb
340
- - doc/ex/qbezierpath.rb
341
- - doc/ex/matte_fill_to_border.rb
342
- - doc/ex/transparent.rb
343
- - doc/ex/transverse.rb
344
- - doc/ex/roundrect.rb
330
+ - doc/ex/rectangle.rb
331
+ - doc/ex/shade.rb
332
+ - doc/ex/polyline.rb
333
+ - doc/ex/resize_to_fit.rb
334
+ - doc/ex/cubic02.rb
335
+ - doc/ex/median_filter.rb
345
336
  - doc/ex/cbezier1.rb
346
- - doc/ex/rect02.rb
347
- - doc/ex/radial_blur.rb
348
- - doc/ex/emboss.rb
349
- - doc/ex/flop.rb
350
- - doc/ex/Skew.rb
351
- - doc/ex/text_align.rb
352
- - doc/ex/get_pixels.rb
337
+ - doc/ex/threshold.rb
338
+ - doc/ex/segment.rb
339
+ - doc/ex/gaussian_blur.rb
353
340
  - doc/ex/charcoal.rb
354
- - doc/ex/matte_floodfill.rb
355
- - doc/ex/edge.rb
356
- - doc/ex/fonts.rb
357
- - doc/ex/remap.rb
358
- - doc/ex/mosaic.rb
359
- - doc/ex/writing_mode02.rb
360
- - doc/ex/to_blob.rb
361
- - doc/ex/solarize.rb
362
- - doc/ex/Use01.rb
363
- - doc/ex/oil_paint.rb
364
- - doc/ex/mask.rb
341
+ - doc/ex/ellipse01.rb
342
+ - doc/ex/OrigCoordSys.rb
343
+ - doc/ex/get_type_metrics.rb
344
+ - doc/ex/rect01.rb
345
+ - doc/ex/circle.rb
346
+ - doc/ex/nonzero.rb
365
347
  - doc/ex/cbezier2.rb
366
- - doc/ex/equalize.rb
367
- - doc/ex/chop.rb
368
- - doc/ex/InitialCoords.rb
369
- - doc/ex/matte_replace.rb
370
- - doc/ex/smile.rb
371
- - doc/ex/arcpath.rb
372
- - doc/ex/line01.rb
373
- - doc/ex/line.rb
374
- - doc/ex/text01.rb
375
- - doc/ex/NewCoordSys.rb
376
- - doc/ex/composite_tiled.rb
377
- - doc/ex/stroke_fill.rb
378
- - doc/ex/wave.rb
379
- - doc/ex/bounding_box.rb
380
- - doc/ex/baseline_shift01.rb
381
- - build_tarball.rake
382
- has_rdoc: true
348
+ - doc/ex/composite.rb
349
+ - doc/ex/compose_mask.rb
350
+ - doc/ex/average.rb
351
+ - doc/css/ref.css
352
+ - doc/css/popup.css
353
+ - doc/css/doc.css
354
+ - doc/comtasks.html
355
+ - doc/index.html
356
+ - doc/rvguse.html
357
+ - doc/rvgpattern.html
358
+ - doc/imusage.html
359
+ - doc/scripts/doc.js
360
+ - doc/scripts/stripeTables.js
361
+ - doc/image3.html
362
+ - doc/rvg.html
363
+ - doc/rvgxform.html
364
+ - doc/magick.html
365
+ - doc/imageattrs.html
366
+ - doc/struct.html
367
+ - doc/rvgstyle.html
368
+ - doc/rvgshape.html
369
+ - doc/image1.html
370
+ - doc/rvgclip.html
371
+ - doc/draw.html
372
+ - doc/image2.html
373
+ - doc/rvgtext.html
374
+ - doc/rvgtut.html
375
+ - doc/optequiv.html
376
+ - doc/rvgimage.html
377
+ - doc/info.html
383
378
  homepage: http://rubyforge.org/projects/rmagick
384
379
  licenses: []
385
-
386
380
  post_install_message:
387
381
  rdoc_options: []
388
-
389
- require_paths:
382
+ require_paths:
390
383
  - lib
391
384
  - ext
392
- required_ruby_version: !ruby/object:Gem::Requirement
393
- requirements:
394
- - - ">="
395
- - !ruby/object:Gem::Version
385
+ required_ruby_version: !ruby/object:Gem::Requirement
386
+ none: false
387
+ requirements:
388
+ - - ! '>='
389
+ - !ruby/object:Gem::Version
396
390
  version: 1.8.5
397
- version:
398
- required_rubygems_version: !ruby/object:Gem::Requirement
399
- requirements:
400
- - - ">="
401
- - !ruby/object:Gem::Version
402
- version: "0"
403
- version:
404
- requirements:
391
+ required_rubygems_version: !ruby/object:Gem::Requirement
392
+ none: false
393
+ requirements:
394
+ - - ! '>='
395
+ - !ruby/object:Gem::Version
396
+ version: '0'
397
+ requirements:
405
398
  - ImageMagick 6.4.9 or later
406
399
  rubyforge_project: rmagick
407
- rubygems_version: 1.3.5
400
+ rubygems_version: 1.8.24
408
401
  signing_key:
409
402
  specification_version: 3
410
403
  summary: Ruby binding to ImageMagick
411
404
  test_files: []
412
-