]> git.openstreetmap.org Git - rails.git/commitdiff
Fixup the paperclip asset URL handling for rails 4 support
authorTom Hughes <tom@compton.nu>
Tue, 24 Sep 2013 09:46:00 +0000 (10:46 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 24 Sep 2013 09:46:00 +0000 (10:46 +0100)
config/initializers/paperclip.rb

index 0c9eb828fbababb45e65d2f3b6b52d473042b053..592c9e1871cab00d7290d3447e4fac265cfede69 100644 (file)
@@ -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