Commit 5dba614c by Prem Sichanugrist

Update README

Fixes #723
parent 0efa3843
......@@ -55,7 +55,7 @@ well with gems.
Include the gem in your Gemfile:
gem "paperclip", "~> 2.0"
gem "paperclip", "~> 2.7"
Or, if you want to get the latest, you can get master from the main paperclip repository:
......@@ -72,7 +72,7 @@ Anyway, if you don't use Bundler (though you probably should, even in Rails 2),
...
Rails::Initializer.run do |config|
...
config.gem "paperclip", :version => "~> 2.4"
config.gem "paperclip", :version => "~> 2.7"
...
end
......@@ -106,6 +106,8 @@ In your migrations:
end
end
(Or you can use migration generator: `rails generate paperclip user avatar`)
In your edit and new views:
<%= form_for :user, @user, :url => user_path, :html => { :multipart => true } do |form| %>
......@@ -199,9 +201,9 @@ thumbnail images. By defining a subclass of Paperclip::Processor, you can
perform any processing you want on the files that are attached. Any file in
your Rails app's lib/paperclip\_processors directory is automatically loaded by
paperclip, allowing you to easily define custom processors. You can specify a
processor with the :processors option to has\_attached\_file:
processor with the :processors option to `has_attached_file`:
has_attached\_file :scan, :styles => { :text => { :quality => :better } },
has_attached_file :scan, :styles => { :text => { :quality => :better } },
:processors => [:ocr]
This would load the hypothetical class Paperclip::Ocr, which would have the
......@@ -251,8 +253,8 @@ are called before and after the processing of each attachment), and the
attachment-specific `before_<attachment>_post_process` and
`after_<attachment>_post_process`. The callbacks are intended to be as close to
normal ActiveRecord callbacks as possible, so if you return false (specifically
\- returning nil is not the same) in a before\_ filter, the post processing step
will halt. Returning false in an after\_ filter will not halt anything, but you
\- returning nil is not the same) in a `before_filter`, the post processing step
will halt. Returning false in an `after_filter will not halt anything, but you
can access the model and the attachment if necessary.
_NOTE: Post processing will not even *start* if the attachment is not valid
......
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