Skip to content

Instantly share code, notes, and snippets.

@bonyiii
Forked from trekdemo/cucumber_hooks.rb
Created July 23, 2013 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bonyiii/6060678 to your computer and use it in GitHub Desktop.
Save bonyiii/6060678 to your computer and use it in GitHub Desktop.
Before do |scenario|
DeferredGarbageCollection.start
end
After do |scenario|
DeferredGarbageCollection.reconsider
end
at_exit do
DeferredGarbageCollection.stop
end
class DeferredGarbageCollection
DEFERRED_GC_THRESHOLD = (ENV['DEFER_GC'] || 10.0).to_f
@@last_gc_run = Time.now
def self.start
GC.disable if DEFERRED_GC_THRESHOLD > 0
end
def self.stop
GC.enable
GC.start
end
def self.reconsider
if DEFERRED_GC_THRESHOLD > 0 && Time.now - @@last_gc_run >= DEFERRED_GC_THRESHOLD
GC.enable
GC.start
GC.disable
@@last_gc_run = Time.now
end
end
end
RSpec.configure do |config|
config.after(:suite) do
DeferredGarbageCollection.stop
end
config.before(:all) do
DeferredGarbageCollection.start
end
config.after(:all) do
DeferredGarbageCollection.reconsider
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment