Fixup the paperclip asset URL handling for rails 4 support

This commit is contained in:
Tom Hughes 2013-09-24 10:46:00 +01:00
parent a8d8e750da
commit f289c1092c

View file

@ -14,6 +14,12 @@ module Paperclip
end end
end end
Rails.application.config.after_initialize do |app|
Paperclip::AssetUrlGenerator::VIEW_ACCESSORS.each do |attr|
Paperclip::AssetUrlGenerator.send("#{attr}=", ActionView::Base.send(attr))
end
end
Paperclip::Attachment.default_options[:url] = "/attachments/:class/:attachment/:id_partition/:style/:fingerprint.:extension" Paperclip::Attachment.default_options[:url] = "/attachments/:class/:attachment/:id_partition/:style/:fingerprint.:extension"
Paperclip::Attachment.default_options[:path] = "#{ATTACHMENTS_DIR}/:class/:attachment/:id_partition/:style/:fingerprint.:extension" Paperclip::Attachment.default_options[:path] = "#{ATTACHMENTS_DIR}/:class/:attachment/:id_partition/:style/:fingerprint.:extension"
Paperclip::Attachment.default_options[:url_generator] = Paperclip::AssetUrlGenerator Paperclip::Attachment.default_options[:url_generator] = Paperclip::AssetUrlGenerator