Sha256: 15801b846ad865fff87ef87f4758a1d2abde5bd8e13091c24b957639bd25dcd9
Contents?: true
Size: 386 Bytes
Versions: 8
Compression:
Stored size: 386 Bytes
Contents
# encoding: utf-8 module Cells module Cell autoload :Base, 'cells/cell/base' autoload :View, 'cells/cell/view' autoload :Caching, 'cells/cell/caching' autoload :ActiveHelper, 'cells/cell/active_helper' end end # Mixin caching behaviour into +::Cell::Base+. # Note: Must be done using class_eval. Cells::Cell::Base.class_eval do include ::Cells::Cell::Caching end
Version data entries
8 entries across 8 versions & 1 rubygems