paranoid about thread safety

This commit is contained in:
rick 2009-12-10 05:50:11 -08:00
parent f6d7be4a1d
commit 0a217b7248

View File

@ -1,3 +1,11 @@
module Faraday
# Loads each autoloaded constant. If thread safety is a concern, wrap
# this in a Mutex.
def self.load
constants.each do |const|
const_get(const) if autoload?(const)
end
end
autoload :Connection, 'faraday/connection'
end