♦️Rails Framework

Describe about Rails Framework

Rails is a web framework for Ruby. It used MVC concept for implementation.

WorkFlow:

  1. Request is coming to route.

  2. Route will determine the destination of controller

  3. In Controller It will have a logic that interact with model part.

  4. Send the response from model to View

  5. Send view back to client

Last updated