reload()
public
A method to \reload the
attributes of this object from the remote web service.
Examples
my_branch = Branch.find(:first)
my_branch.name
my_branch.name
my_branch.reload
my_branch.name
# File activeresource/lib/active_resource/base.rb, line 1000
def reload
self.load(self.class.find(to_param, :params => @prefix_options).attributes)
end