Method: Authorize::Redis::Base.connection_manager

Defined in:
lib/authorize/redis/base.rb

.connection_managerObject

Search up the inheritance chain for a manager unless a connection is specified here.



27
28
29
# File 'lib/authorize/redis/base.rb', line 27

def connection_manager
  @manager ||= (connection_base? ? Redis::ConnectionManager.new(@connection_specification) : superclass.connection_manager)
end