doc/comtasks.html in rmagick-2.13.4 vs doc/comtasks.html in rmagick-2.14.0
- old
+ new
@@ -76,10 +76,10 @@
have to do is read the image and then call the attribute methods.
Here's a Ruby program that takes image filenames from the command
line and then prints a variety of information about each image to
the terminal.</p>
<pre class="example">
-require 'RMagick'
+require "rmagick"
ARGV.each { |file|
puts file
img = Magick::Image::read(file).first
puts " Format: #{img.format}"
puts " Geometry: #{img.columns}x#{img.rows}"