File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -363,8 +363,7 @@ class IMAP < Protocol
363
363
# Seconds to wait until an IDLE response is received.
364
364
attr_reader :idle_response_timeout
365
365
366
- # The thread to receive exceptions.
367
- attr_accessor :client_thread
366
+ attr_accessor :client_thread # :nodoc:
368
367
369
368
# Returns the debug mode.
370
369
def self . debug
@@ -1269,9 +1268,7 @@ def idle_done
1269
1268
#
1270
1269
# port:: Port number (default value is 143 for imap, or 993 for imaps)
1271
1270
# ssl:: If +options[:ssl]+ is true, then an attempt will be made
1272
- # to use SSL (now TLS) to connect to the server. For this to work
1273
- # OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions need to
1274
- # be installed.
1271
+ # to use SSL (now TLS) to connect to the server.
1275
1272
# If +options[:ssl]+ is a hash, it's passed to
1276
1273
# OpenSSL::SSL::SSLContext#set_params as parameters.
1277
1274
# open_timeout:: Seconds to wait until a connection is opened
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class ByeResponseError < ResponseError
51
51
class UnknownResponseError < ResponseError
52
52
end
53
53
54
- RESPONSE_ERRORS = Hash . new ( ResponseError )
54
+ RESPONSE_ERRORS = Hash . new ( ResponseError ) # :nodoc:
55
55
RESPONSE_ERRORS [ "NO" ] = NoResponseError
56
56
RESPONSE_ERRORS [ "BAD" ] = BadResponseError
57
57
You can’t perform that action at this time.
0 commit comments