Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.19 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Pooling needs to be 1 on tests
  2. module DataObjects
  3.   module Pooling
  4.     class Pool
  5.       alias old_new new
  6.       def new
  7.         @single_instance ||= old_new
  8.       end
  9.     end
  10.   end
  11. end