Commit a44bbd51 by Prem Sichanugrist

Use `save(:validate => false)` since `save(false)` is deprecated in 3.x

Closes #481
parent 6fcbd29e
...@@ -44,7 +44,11 @@ namespace :paperclip do ...@@ -44,7 +44,11 @@ namespace :paperclip do
instance.send("#{name}_file_name=", instance.send("#{name}_file_name").strip) instance.send("#{name}_file_name=", instance.send("#{name}_file_name").strip)
instance.send("#{name}_content_type=", file.content_type.strip) instance.send("#{name}_content_type=", file.content_type.strip)
instance.send("#{name}_file_size=", file.size) if instance.respond_to?("#{name}_file_size") instance.send("#{name}_file_size=", file.size) if instance.respond_to?("#{name}_file_size")
instance.save(false) if Rails.version >= "3.0.0"
instance.save(:validate => false)
else
instance.save(false)
end
else else
true true
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