Skip to content

Commit 18581ad

Browse files
committed
🔀 Merge branch 'nodocs-and-remove-warning'
2 parents a3a88e4 + 23c2a4f commit 18581ad

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

lib/net/imap.rb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,7 @@ class IMAP < Protocol
363363
# Seconds to wait until an IDLE response is received.
364364
attr_reader :idle_response_timeout
365365

366-
# The thread to receive exceptions.
367-
attr_accessor :client_thread
366+
attr_accessor :client_thread # :nodoc:
368367

369368
# Returns the debug mode.
370369
def self.debug
@@ -1269,9 +1268,7 @@ def idle_done
12691268
#
12701269
# port:: Port number (default value is 143 for imap, or 993 for imaps)
12711270
# 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.
12751272
# If +options[:ssl]+ is a hash, it's passed to
12761273
# OpenSSL::SSL::SSLContext#set_params as parameters.
12771274
# open_timeout:: Seconds to wait until a connection is opened

lib/net/imap/errors.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ByeResponseError < ResponseError
5151
class UnknownResponseError < ResponseError
5252
end
5353

54-
RESPONSE_ERRORS = Hash.new(ResponseError)
54+
RESPONSE_ERRORS = Hash.new(ResponseError) # :nodoc:
5555
RESPONSE_ERRORS["NO"] = NoResponseError
5656
RESPONSE_ERRORS["BAD"] = BadResponseError
5757

0 commit comments

Comments
 (0)