method
    
    stat
 
  stat()
  public
  
    Hide source    
    
      
  
# File lib/net/pop.rb, line 934 def stat res = check_response(critical { get_response('STAT') }) m = /\A\+OK\s+(\d+)\s+(\d+)/.match(res) or raise POPBadResponse, "wrong response format: #{res}" [m[1].to_i, m[2].to_i] end

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
    
 = protected
 = protected
  