class ActiveSupport::Cache::WriteOptions

def expires_in=(expires_in)

cannot both be set.
previously set, this will unset it since +expires_in+ and +expires_at+
Sets the Cache entry's +expires_in+ value. If an +expires_at+ option was
def expires_in=(expires_in)
  @options.delete(:expires_at)
  @options[:expires_in] = expires_in
end