method

expires_at=

rails latest stable - Class: ActiveSupport::Cache::Entry
expires_at=(value)
public

No documentation available.

# File activesupport/lib/active_support/cache/entry.rb, line 51
      def expires_at=(value)
        if value
          @expires_in = value.to_f - @created_at
        else
          @expires_in = nil
        end
      end