Skip to content

Instantly share code, notes, and snippets.

@ryanclark2
Created December 17, 2015 00:50
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 ryanclark2/e25fefc6e27e82434c10 to your computer and use it in GitHub Desktop.
Save ryanclark2/e25fefc6e27e82434c10 to your computer and use it in GitHub Desktop.
Deferred Garbage Collection for Specs
class DeferredGarbageCollection
NEW_GC_THRESHOLD = (ENV["DEFER_GC"] || -1).to_f
@last_gc_run = Time.zone.now
def self.start
GC.disable if NEW_GC_THRESHOLD > 0
end
def self.reconsider
if NEW_GC_THRESHOLD > 0 && Time.zone.now - @last_gc_run >= NEW_GC_THRESHOLD
GC.enable
GC.start
GC.disable
@last_gc_run = Time.zone.now
end
end
end
if defined?(Cucumber)
Before do
DeferredGarbageCollection.start
end
After do
DeferredGarbageCollection.reconsider
end
elsif defined?(RSpec)
RSpec.configure do |config|
config.before(:all) do
DeferredGarbageCollection.start
end
config.after(:all) do
DeferredGarbageCollection.reconsider
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment