class ActiveSupport::Cache::WriteOptions
def expires_in=(expires_in)
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