module Nelly::ActsAsCacheable

Public Class Methods

acts_as_cacheable() click to toggle source
# File lib/nelly/acts_as_cacheable.rb, line 7
def self.acts_as_cacheable
  extend Nelly::ActsAsCacheable::ClassMethods
end
included(base) click to toggle source
# File lib/nelly/acts_as_cacheable.rb, line 5
def self.included(base)
  base.class_eval do
    def self.acts_as_cacheable
      extend Nelly::ActsAsCacheable::ClassMethods
    end
  end
end