module RailsConnector # @api public class Configuration # @api public module PdfGenerator @@hosts = [] # @api public def self.host_whitelist(*hosts) @@hosts = hosts end def self.host_allowed?(host) @@hosts.include?(host) end end end end