Skip to content

Instantly share code, notes, and snippets.

@apeckham
Created June 1, 2009 03:29
Show Gist options
  • Save apeckham/121212 to your computer and use it in GitHub Desktop.
Save apeckham/121212 to your computer and use it in GitHub Desktop.
Disables Rails.cache for testing like http://gist.github.com/104946, but only overrides write
class BlackHoleStore < ActiveSupport::Cache::MemoryStore
def write(*args)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment