Fixup the paperclip asset URL handling for rails 4 support
This commit is contained in:
parent
a8d8e750da
commit
f289c1092c
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue