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 55f6312 commit dd130b4Copy full SHA for dd130b4
lib/net/imap.rb
@@ -245,8 +245,7 @@ class IMAP < Protocol
245
# Seconds to wait until an IDLE response is received.
246
attr_reader :idle_response_timeout
247
248
- # The thread to receive exceptions.
249
- attr_accessor :client_thread
+ attr_accessor :client_thread # :nodoc:
250
251
# Returns the debug mode.
252
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