class ActionDispatch::Flash::FlashNow

def []=(k, v)

def []=(k, v)
  k = k.to_s
  @flash[k] = v
  @flash.discard(k)
  v
end