RubyEast ~ Obie Fernandez #1
The controller is what sets Rails apart from everyone else.
The dispatcher is a class in Rails. It figures out which controller and action to execute. Load the controller file and instantiate the controller. Invoke the requested action.
Web server provides request info, HTTP method, URI, parameters
Prevent double render by redirecting, then “and return”