From: Tom Hughes Date: Tue, 24 Sep 2013 09:46:00 +0000 (+0100) Subject: Fixup the paperclip asset URL handling for rails 4 support X-Git-Tag: live~4745 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/f289c1092c509f7977ebbf7da7d39ccee4ef9743 Fixup the paperclip asset URL handling for rails 4 support --- diff --git a/config/initializers/paperclip.rb b/config/initializers/paperclip.rb index 0c9eb828f..592c9e187 100644 --- a/config/initializers/paperclip.rb +++ b/config/initializers/paperclip.rb @@ -14,6 +14,12 @@ module Paperclip 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[:path] = "#{ATTACHMENTS_DIR}/:class/:attachment/:id_partition/:style/:fingerprint.:extension" Paperclip::Attachment.default_options[:url_generator] = Paperclip::AssetUrlGenerator