In Java there is a \"this\" function that points to its method. Is there an equivalent in Ruby? For instance, is there:
def method this.method end <
def method this.method end
There's self, like:
self
def account_id self.account.id end