class Rack::Protection::ContentSecurityPolicy

def csp_policy

def csp_policy
  directives = []
  DIRECTIVES.each do |d|
    if options.key?(d)
      directives << "#{d.to_s.sub(/_/, '-')} #{options[d]}"
    end
  end
  # Set these key values to boolean 'true' to include in policy
  NO_ARG_DIRECTIVES.each do |d|
    if options.key?(d) && options[d].is_a?(TrueClass)
      directives << d.to_s.sub(/_/, '-')
    end
  end
  directives.compact.sort.join('; ')
end