When accessing an instance variable via accessor method attribute, what is the difference between the expressions self.attribute and attribute? Say, we define an accessor:
def post
@post
end
We can call
self.post
or simply
post
What is special about adding self?
