Module: Nitro::Caching::Output
- Included in:
- Proxy
- Defined in:
- lib/nitro/caching/output.rb
Overview
Nitro promotes coding your application in such a way as to allow for output caching to the greatest extend. Output caching *is your friend*. – gmosx, FIXME: Don’t create excessive directories, use better rewrite rules to handle xxx.html files. ++
Defined Under Namespace
Modules: ClassMethods
Class Attribute Summary collapse
-
.cached_actions ⇒ Object
The collection of cached actions.
Class Method Summary collapse
-
.included(base) ⇒ Object
:nodoc:.
Class Attribute Details
.cached_actions ⇒ Object
The collection of cached actions.
38 39 40 |
# File 'lib/nitro/caching/output.rb', line 38 def cached_actions @cached_actions end |
Class Method Details
.included(base) ⇒ Object
:nodoc:
43 44 45 |
# File 'lib/nitro/caching/output.rb', line 43 def self.included(base) # :nodoc: base.extend(ClassMethods) end |