Flowdock
method

reload

Importance_1
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActiveResource::Base
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 # => "Wislon Raod"

# Another client fixes the typo...

my_branch.name # => "Wislon Raod"
my_branch.reload
my_branch.name # => "Wilson Road"
Show source
Register or log in to add new notes.