public
Rubygem
Description: A lightweight and opinionated but hackable library for attaching images to ActiveRecord models.
Homepage:
Clone URL: git://github.com/norman/has_image.git
Revert "check if ImageMagick is in PATH"

This makes it harder to add a custom (non-ImageMagick) processor and fails
on gratuitously Windows.

This reverts commit fb9a4d609387f8e33151042bbca0e0d1f812db83.

Conflicts:

  init.rb
norman (author)
Wed Oct 22 07:01:38 -0700 2008
commit  7245d7024a48e08e641e8b6c2253d561e6cbd25f
tree    709d07bd0c23b2c24a054809311a8e6d7bb15933
parent  756d467405fc9cc7c275bd479f8d79eff1480b11
...
1
2
3
4
5
6
7
8
9
...
 
 
 
 
 
1
 
 
2
0
@@ -1,8 +1 @@
0
-def imagemagick_installed?
0
-  `which identify`
0
-  $?.success?
0
-end
0
-
0
 require 'has_image'
0
-
0
-abort 'ImageMagick not found in PATH. Is it installed?' unless imagemagick_installed?
0
\ No newline at end of file

Comments