module I2X class Client def initialize config @config = config end def ping p "PONGING #{@config[:server][:host]}" end end end