Source: show | on GitHub
# File activesupport/lib/active_support/cache.rb, line 1089 def expires_at @options[:expires_at] end
# File activesupport/lib/active_support/cache.rb, line 1093 def expires_at=(expires_at) @options.delete(:expires_in) @options[:expires_at] = expires_at end
# File activesupport/lib/active_support/cache.rb, line 1080 def expires_in @options[:expires_in] end
# File activesupport/lib/active_support/cache.rb, line 1084 def expires_in=(expires_in) @options.delete(:expires_at) @options[:expires_in] = expires_in end
# File activesupport/lib/active_support/cache.rb, line 1072 def version @options[:version] end
# File activesupport/lib/active_support/cache.rb, line 1076 def version=(version) @options[:version] = version end