Class: Moped::Connection
- Inherits:
-
Object
- Object
- Moped::Connection
- Defined in:
- lib/webmate/support/em_mongoid.rb
Instance Method Summary collapse
Instance Method Details
#connect ⇒ Object
45 46 47 48 49 50 51 |
# File 'lib/webmate/support/em_mongoid.rb', line 45 def connect @sock = if !![:ssl] Sockets::SSL.connect(host, port, timeout) else Sockets::EM_TCP.connect(host, port, timeout) end end |