class Smooth::Cache

Public Instance Methods

method_missing(meth, *args, &block) click to toggle source
Calls superclass method
# File lib/smooth/cache.rb, line 11
def method_missing(meth, *args, &block)
  if defined? ::Rails
    return ::Rails.cache.send(meth, *args, &block)
  end

  super
end