Skip to Content Skip to Search
Methods
E
V

Instance Public methods

expires_at()

# File activesupport/lib/active_support/cache.rb, line 905
def expires_at
  @options[:expires_at]
end

expires_at=(expires_at)

# File activesupport/lib/active_support/cache.rb, line 909
def expires_at=(expires_at)
  @options.delete(:expires_in)
  @options[:expires_at] = expires_at
end

expires_in()

# File activesupport/lib/active_support/cache.rb, line 896
def expires_in
  @options[:expires_in]
end

expires_in=(expires_in)

# File activesupport/lib/active_support/cache.rb, line 900
def expires_in=(expires_in)
  @options.delete(:expires_at)
  @options[:expires_in] = expires_in
end

version()

# File activesupport/lib/active_support/cache.rb, line 888
def version
  @options[:version]
end

version=(version)

# File activesupport/lib/active_support/cache.rb, line 892
def version=(version)
  @options[:version] = version
end