class Nokogiri::CSS::Parser

def without_cache &block

Execute +block+ without cache
def without_cache &block
  tmp = @cache_on
  @cache_on = false
  block.call
  @cache_on = tmp
end