module TwitterWithAutoPagination::CachingAndLogging::Utils
Public Instance Methods
cache_disabled?(options)
click to toggle source
# File lib/twitter_with_auto_pagination/caching_and_logging.rb, line 64 def cache_disabled?(options) options.is_a?(Hash) && options.has_key?(:cache) && !options[:cache] end