Metody třídy jsou metody samotné třídy nikoliv jejich objektů.
# File: session/class-methods.ses
class Test
def Test.hello
puts "Hello world!"
end
end
nil
Test.hello
Hello world!
nil
# File: session/class-methods2.ses
class Test
def self.hello
puts "Hello world!"
end
end
nil
Test.hello
Hello world!
nil