Commit 6d9e5f89 by Chad Ostrowski

Add default_url option to Quick Start example

It took me a lot of digging to figure out how to add the
`:default_url` option, but it seems a common option that many
people will need to modify. Putting it anywhere in the README
will help those who just cmd-F on the page, like me.
parent dcd2774e
...@@ -101,7 +101,7 @@ In your model: ...@@ -101,7 +101,7 @@ In your model:
```ruby ```ruby
class User < ActiveRecord::Base class User < ActiveRecord::Base
attr_accessible :avatar attr_accessible :avatar
has_attached_file :avatar, :styles => { :medium => "300x300>", :thumb => "100x100>" } has_attached_file :avatar, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => "/images/:style/missing.png"
end end
``` ```
......
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