We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9539978 commit 23c2a4fCopy full SHA for 23c2a4f
lib/net/imap.rb
@@ -363,8 +363,7 @@ class IMAP < Protocol
363
# Seconds to wait until an IDLE response is received.
364
attr_reader :idle_response_timeout
365
366
- # The thread to receive exceptions.
367
- attr_accessor :client_thread
+ attr_accessor :client_thread # :nodoc:
368
369
# Returns the debug mode.
370
def self.debug
lib/net/imap/errors.rb
@@ -51,7 +51,7 @@ class ByeResponseError < ResponseError
51
class UnknownResponseError < ResponseError
52
end
53
54
- RESPONSE_ERRORS = Hash.new(ResponseError)
+ RESPONSE_ERRORS = Hash.new(ResponseError) # :nodoc:
55
RESPONSE_ERRORS["NO"] = NoResponseError
56
RESPONSE_ERRORS["BAD"] = BadResponseError
57
0 commit comments