summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/net/pop.rb8
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 13f98b795f..aadafaf5da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed May 25 09:29:38 2011 Eric Hodel <drbrain@segment7.net>
+
+ * lib/net/pop.rb: Hide implementation details from RDoc.
+ [Ruby 1.9 - Bug #4711]
+
Wed May 25 09:26:29 2011 Eric Hodel <drbrain@segment7.net>
* lib/net/ftp.rb: Add :nodoc: for private methods.
diff --git a/lib/net/pop.rb b/lib/net/pop.rb
index 87c921bf87..7e14246d16 100644
--- a/lib/net/pop.rb
+++ b/lib/net/pop.rb
@@ -541,7 +541,7 @@ module Net
end
# internal method for Net::POP3.start
- def do_start(account, password)
+ def do_start(account, password) # :nodoc:
s = timeout(@open_timeout) { TCPSocket.open(@address, port) }
if use_ssl?
raise 'openssl library not installed' unless defined?(OpenSSL)
@@ -577,7 +577,7 @@ module Net
private :do_start
# Does nothing
- def on_connect
+ def on_connect # :nodoc:
end
private :on_connect
@@ -592,7 +592,7 @@ module Net
# - number counter for mails
# - number counter for bytes
# - quits the current command, if any
- def do_finish
+ def do_finish # :nodoc:
@mails = nil
@n_mails = nil
@n_bytes = nil
@@ -608,7 +608,7 @@ module Net
# Returns the current command.
#
# Raises IOError if there is no active socket
- def command
+ def command # :nodoc:
raise IOError, 'POP session not opened yet' \
if not @socket or @socket.closed?
@command