From 0441079b5863e186a08591350e479c56048614fc Mon Sep 17 00:00:00 2001 From: drbrain Date: Wed, 25 May 2011 00:30:04 +0000 Subject: * lib/net/pop.rb: Hide implementation details from RDoc. [Ruby 1.9 - Bug #4711] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/net/pop.rb | 8 ++++---- 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 + + * lib/net/pop.rb: Hide implementation details from RDoc. + [Ruby 1.9 - Bug #4711] + Wed May 25 09:26:29 2011 Eric Hodel * 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 -- cgit v1.2.3