Sometimes you need to run an objects private method from the console or something.
For example your model may look something like this:
@post.send(:set_initial_values)
# or with arguments
@post.send(:update_title, true)
Related External Links: