Method: A4Tools::PipeBuffer#puts
- Defined in:
- lib/net_shell/io.rb
#puts(s) ⇒ Object
52 53 54 55 56 57 58 |
# File 'lib/net_shell/io.rb', line 52 def puts(s) if s.is_a? Array then s.each { |e| puts e.to_s } else write(s.to_s+"\n") end end |