Skip to content

Commit

Permalink
Merge pull request thoughtbot#418 from sleeplessgeek/paperclip
Browse files Browse the repository at this point in the history
---

Updated README to make this requirement more noticeable and to explain how to make sure Paperclip has access to its utilities.
  • Loading branch information
Jon Yurek committed Feb 16, 2011
2 parents fc792c8 + beff127 commit 0422cd8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Expand Up @@ -18,6 +18,21 @@ more detailed options.

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
------------

Expand Down

0 comments on commit 0422cd8

Please sign in to comment.