Commit 0422cd89 by Jon Yurek

Merge pull request #418 from sleeplessgeek/paperclip

---

Updated README to make this requirement more noticeable and to explain how to make sure Paperclip has access to its utilities.
parents fc792c89 beff1273
...@@ -18,6 +18,21 @@ more detailed options. ...@@ -18,6 +18,21 @@ more detailed options.
The complete [RDoc](http://rdoc.info/gems/paperclip) is online. The complete [RDoc](http://rdoc.info/gems/paperclip) is online.
Requirements
------------
ImageMagick must be installed and Paperclip must have access to it. To ensure
that it does, on your command line, run `which convert` (one of the ImageMagick
utilities). This will give you the path where that utility is installed. For
example, it might return `/usr/local/bin/convert`.
Then, in your environment config file, let Paperclip know to look there by adding that
directory to its path.
In development mode, you might add this line to `config/environments/development.rb)`:
Paperclip.options[:command_path] = "/usr/local/bin/"
Installation Installation
------------ ------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment