- 30 Jun, 2011 10 commits
 - 
- 
Closes #170
Prem Sichanugrist committed - 
Prem Sichanugrist committed
 - 
added :preserve_files option so paperclip can get along with soft-delete plugins like acts_as_paranoid Closes #152
Greg Lappen committed - 
Closes #62
Prem Sichanugrist committed - 
Mike Burns committed
 - 
Closes #105
Prem Sichanugrist committed - 
Closes #495
Prem Sichanugrist committed - 
Closes #133, Closes 288
Prem Sichanugrist committed 
 - 
 - 29 Jun, 2011 9 commits
 - 
- 
Closes #214
Prem Sichanugrist committed - 
Closes #216
Prem Sichanugrist committed - 
Example: has_attached_file :image, :bucket => "testing", :path => ":attachment/:style/:basename.:extension" :s3_permissions => { :original => :private }, :styles => { :thumb => '80x80>' } The above will allow public read access on :thumb but require credentials for :original. Example of setting default to private: has_attached_file :image, :bucket => "testing", :path => ":attachment/:style/:basename.:extension" :s3_permissions => :private :styles => { :thumb => '80x80>' } The above will set all to private Closes #398Larry Sprock committed - 
Prem Sichanugrist committed
 - 
Closes #100
Prem Sichanugrist committed - 
Prem Sichanugrist committed
 - 
Alex Godin committed
 - 
Closes #388
Ryan Schlesinger committed - 
The tests would broken for StringIO, because it doesn't have a real "path". I've modify the patch to make the test stop complaining [@sikachu] This closes #470
Lance Ivy committed 
 - 
 - 28 Jun, 2011 7 commits
 - 
- 
Alex Godin committed
 - 
Alex Godin committed
 - 
Alex Godin committed
 - 
Jon Yurek committed
 - 
Jon Yurek committed
 - 
Editing the readme to include information on `:hash`
Alex Godin committed - 
Alex Godin committed
 
 - 
 - 25 Jun, 2011 1 commit
 - 
- 
Gabe Berke-Williams committed
 
 - 
 - 24 Jun, 2011 5 commits
 - 
- 
Closes #286
Prem Sichanugrist committed - 
Closes #499
Sam L'Ecuyer committed - 
the :default_url option for has_attached_file can now also be a Proc/lamba, which gets executed *before* it gets interpolated Closes #253, Closes #360
Peter Vandenberk committed - 
Prem Sichanugrist committed
 - 
Closes #332
Prem Sichanugrist committed 
 - 
 - 20 Jun, 2011 8 commits
 - 
- 
💣 Prem Sichanugrist committed - 
Mikel Lindsaar committed
 - 
Closes #466
Dmitry Polushkin committed - 
This patch only avoid reference to `ActiveRecord::Base.logger` if `ActiveRecord` is not available
Dmitrii Samoilov committed - 
`Module#const_get` was unreliable on returning the right constant. We should check if the constant has been defined first before trying to call `Module#const_get`
Prem Sichanugrist committed - 
Fix problem that Module#const_get might try to lookup the constant in the ancestor class, and fixing the strange error from Rails 2.3.x dependency management Closes #478
Prem Sichanugrist committed - 
Pavel Forkert committed
 - 
There's a case when you really don't want to make a thumbnail of only the first frame, such as making thumbnail for GIF image. This patch will check that the source and output format is an animated format, and not calling `[0]` on it. Closes #454
Prem Sichanugrist committed 
 -