From 5e1d34e92900af8b30e91a86408ea9cb7ca18ed5 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 26 Jul 2009 23:58:46 -0700 Subject: [PATCH] code blocks in readme --- README.markdown | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.markdown b/README.markdown index 242d877..57f0c05 100644 --- a/README.markdown +++ b/README.markdown @@ -28,24 +28,24 @@ Woot. Usage ----- -require 'fakefs' + require 'fakefs' -# That's it. + # That's it. Don't Fake the FS Immediately ----------------------------- -require 'fakefs/safe' - -FakeFS.activate! -# your code -FakeFS.deactive! - -# or -FakeFS do - # your code -end + require 'fakefs/safe' + + FakeFS.activate! + # your code + FakeFS.deactive! + + # or + FakeFS do + # your code + end How is this different than MockFS?