module RailsAppcache def self.config @config ||= Config.new end class Config # Default to off outside of production def perform_caching? @perform_caching || !Rails.env.development? end def perform_caching=(val) @perform_caching = !!val end end end