Hi, in case Ia method allows a block:
SomeModule.connect_tcp(“1.2.3.4”, 23) do |connection|
connection.send_data “hello”
end
how to wrap this into other method? This is what I want to achieve:
module OtherModule
def self.connect(host, port)
SomeModule.connect_tcp host, port
end
end
OtherModule.connect(“1.2.3.4”, 23) do |connection|
connection.send_data “hello”
end