Drop paperclip

This commit is contained in:
Tom Hughes 2019-07-16 18:55:15 +01:00
parent 8a39c6b4a2
commit 5a54cb52f8
3 changed files with 0 additions and 39 deletions

View file

@ -1,25 +0,0 @@
module Paperclip
class AssetUrlGenerator < UrlGenerator
include Sprockets::Rails::Helper
def for(style_name, options)
url = super(style_name, options)
if url =~ %r{^/assets/(.*)$}
asset_path(Regexp.last_match(1))
else
url
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[:path] = "#{Settings.attachments_dir}/:class/:attachment/:id_partition/:style/:fingerprint.:extension"
Paperclip::Attachment.default_options[:url_generator] = Paperclip::AssetUrlGenerator