class Nokogiri::CSS::Parser

def without_cache(&block)

Execute +block+ without cache
def without_cache(&block)
  original_cache_setting = cache_on?
  set_cache(false)
  yield
ensure
  set_cache(original_cache_setting)
end