module ActiveModelCachers

Constants

VERSION

Public Class Methods

config() { |config| ... } click to toggle source
# File lib/active_model_cachers.rb, line 10
def self.config
  @config ||= Config.new
  yield(@config) if block_given?
  return @config
end