quick_magick 0.7.3 → 0.7.4

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.

Potentially problematic release.


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

data/README.rdoc CHANGED
@@ -26,7 +26,7 @@ Use QuickMagick to:
26
26
  First, you should install ImageMagick (http://www.imagemagick.org/) on your machine.
27
27
  Command line tools of ImageMagick must be in your system path.
28
28
  You can check this by running the command:
29
- identify --version
29
+ identify -version
30
30
  Now to install QuickMagick just type at your command line:
31
31
  gem install quick_magick
32
32
  ... and it's done.
@@ -154,7 +154,7 @@ You can also display an image to Xserver
154
154
  i.display
155
155
 
156
156
  QuickMagick supports also ImageList s
157
- # Batch generate a list of jpg files to gif while resizing them
157
+ # Batch convert a list of jpg files to gif while resizing them
158
158
  il = QuickMagick::ImageList.new('test.jpg', 'test2.jpg')
159
159
  il << QuickMagick::Image.read('test3.jpg')
160
160
  il.format = 'gif'
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('quick_magick', '0.7.3') do |p|
5
+ Echoe.new('quick_magick', '0.7.4') do |p|
6
6
  p.description = "QuickMagick allows you to access ImageMagick command line functions using Ruby interface."
7
7
  p.summary = "A gem build by BadrIT to access ImageMagick command line functions easily and quickly"
8
8
  p.url = "http://quickmagick.rubyforge.org/"
data/lib/quick_magick.rb CHANGED
@@ -5,7 +5,7 @@ end
5
5
 
6
6
  # check if ImageMagick is installed
7
7
  begin
8
- x = `identify --version 2>&1`
8
+ x = `identify -version 2>&1`
9
9
  raise(QuickMagick::QuickMagickError, "ImageMagick not installed") unless x.index('ImageMagick')
10
10
  rescue Errno::ENOENT
11
11
  # For Windows machines
data/quick_magick.gemspec CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{quick_magick}
5
- s.version = "0.7.3"
5
+ s.version = "0.7.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ahmed ElDawy"]
9
- s.date = %q{2010-04-26}
9
+ s.date = %q{2010-05-06}
10
10
  s.description = %q{QuickMagick allows you to access ImageMagick command line functions using Ruby interface.}
11
11
  s.email = %q{ahmed.eldawy@badrit.com}
12
12
  s.extra_rdoc_files = ["README.rdoc", "lib/quick_magick.rb", "lib/quick_magick/image.rb", "lib/quick_magick/image_list.rb"]
13
13
  s.files = ["Manifest", "README.rdoc", "Rakefile", "lib/quick_magick.rb", "lib/quick_magick/image.rb", "lib/quick_magick/image_list.rb", "quick_magick.gemspec", "test/9.gif", "test/badfile.xxx", "test/image_list_test.rb", "test/image_test.rb", "test/multipage.tif", "test/test_magick.rb", "test/warnings.tiff"]
14
14
  s.homepage = %q{http://quickmagick.rubyforge.org/}
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Quick_magick", "--main", "README.rdoc"]
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Quick_magick", "--main", "README.rdoc~"]
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = %q{quickmagick}
18
18
  s.rubygems_version = %q{1.3.6}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 7
8
- - 3
9
- version: 0.7.3
8
+ - 4
9
+ version: 0.7.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ahmed ElDawy
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-26 00:00:00 +02:00
17
+ date: 2010-05-06 00:00:00 +03:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -55,7 +55,7 @@ rdoc_options:
55
55
  - --title
56
56
  - Quick_magick
57
57
  - --main
58
- - README.rdoc
58
+ - README.rdoc~
59
59
  require_paths:
60
60
  - lib
61
61
  required_ruby_version: !ruby/object:Gem::Requirement