Skip to content

Commit f868315

Browse files
committed
Merge branch 'master-3.2' into dist/3.2/bookworm
2 parents b747f09 + 249fe59 commit f868315

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+877
-416
lines changed
File renamed without changes.

.bundle/gems/net-imap-0.3.4.1/lib/net/imap.rb renamed to .bundle/gems/net-imap-0.3.8/lib/net/imap.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -511,10 +511,8 @@ module Net
511511
#
512512
# - #greeting: The server's initial untagged response, which can indicate a
513513
# pre-authenticated connection.
514-
# - #responses: The untagged responses, as a hash. Keys are the untagged
515-
# response type (e.g. "OK", "FETCH", "FLAGS") and response code (e.g.
516-
# "ALERT", "UIDVALIDITY", "UIDNEXT", "TRYCREATE", etc). Values are arrays
517-
# of UntaggedResponse or ResponseCode.
514+
# - #responses: A hash with arrays of unhandled <em>non-+nil+</em>
515+
# UntaggedResponse and ResponseCode +#data+, keyed by +#name+.
518516
# - #add_response_handler: Add a block to be called inside the receiver thread
519517
# with every server response.
520518
# - #remove_response_handler: Remove a previously added response handler.
@@ -701,7 +699,7 @@ module Net
701699
# * {Character sets}[https://www.iana.org/assignments/character-sets/character-sets.xhtml]
702700
#
703701
class IMAP < Protocol
704-
VERSION = "0.3.4.1"
702+
VERSION = "0.3.8"
705703

706704
include MonitorMixin
707705
if defined?(OpenSSL::SSL)
@@ -712,7 +710,9 @@ class IMAP < Protocol
712710
# Returns the initial greeting the server, an UntaggedResponse.
713711
attr_reader :greeting
714712

715-
# Returns recorded untagged responses.
713+
# Returns a hash with arrays of unhandled <em>non-+nil+</em>
714+
# UntaggedResponse#data keyed by UntaggedResponse#name, and
715+
# ResponseCode#data keyed by ResponseCode#name.
716716
#
717717
# For example:
718718
#

0 commit comments

Comments
 (0)