# Rails Framework

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

<figure><img src="https://2166680554-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FP9VzT74ziIucCaJgfreE%2Fuploads%2F6fA7SbEraY6Stw0mHomQ%2FMVC_Rails.png?alt=media&#x26;token=32b800ed-426f-48b6-a40c-21c8abf99eda" alt=""><figcaption></figcaption></figure>

**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&#x20;
5. Send view back to client
