class Paperclip::Nginx::Upload::TmpPathNotInWhitelistError

Public Class Methods

new(tmp_path, whitelist) click to toggle source
Calls superclass method
# File lib/paperclip/nginx/upload/io_adapter.rb, line 8
def initialize(tmp_path, whitelist)
  super("Paperclip nginx upload adapter received non whitelisted tmp file '#{tmp_path}'. " +
        "Whitelist: #{whitelist.inspect}")
end