How do I list all the methods that a particular object has access to?
I have a @current_user object, defined in the application controller:
@current_user
Or just User.methods(false) to return only the methods defined within that class.
User.methods(false)