Skip to Content Skip to Search
Methods
E
V

Instance Public methods

expires_at()

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

expires_at=(expires_at)

# File activesupport/lib/active_support/cache.rb, line 1093
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 1080
def expires_in
  @options[:expires_in]
end

expires_in=(expires_in)

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

version()

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

version=(version)

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