On this page
class Net::WriteAdapter
The writer adapter class
Public Class Methods
# File lib/net/protocol.rb, line 487
def initialize(writer)
@writer = writer
end
Public Instance Methods
# File lib/net/protocol.rb, line 501
def <<(str)
write str
self
end
# File lib/net/protocol.rb, line 491
def inspect
"#<#{self.class} writer=#{@writer.inspect}>"
end
print(str)
Alias for: write
# File lib/net/protocol.rb, line 510
def printf(*args)
write sprintf(*args)
end
# File lib/net/protocol.rb, line 506
def puts(str = '')
write str.chomp("\n") + "\n"
end
Ruby Core © 1993–2022 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.