def self.method_name
end
defines a class method.
def method_name
end
defines an instance method.
This is a pretty good post on it.
def self.method_name
end
defines a class method.
def method_name
end
defines an instance method.
This is a pretty good post on it.