To declare a static method, write …
def self.checkPings
# A static method
end
… or …
class Myclass extend self
def checkPings
# Its static method
end
end
To declare a static method, write …
def self.checkPings
# A static method
end
… or …
class Myclass extend self
def checkPings
# Its static method
end
end