How does rails handle CSRF attacks using CSRF token…?

CSRF Stands for Cross Site Request Forgery. First of all, let us know what is a CSRF attack and how...

Difference between _path and _url in rails and when to use them…?

You would have been using redirect_to root_path in your controller action. We also have used redirect_to root_url. So are they...

How to implement Single Table Inheritance in rails

One of the interview questions in Ruby on rails would be What is STI…? How would you implement it…?. But...