class ActionDispatch::SSL

def build_hsts_header(hsts)

https://tools.ietf.org/html/rfc6797#section-6.1
def build_hsts_header(hsts)
  value = +"max-age=#{hsts[:expires].to_i}"
  value << "; includeSubDomains" if hsts[:subdomains]
  value << "; preload" if hsts[:preload]
  value
end