How Does The Model Interact With The Database In Ruby on Rails
02 Sep 2020
You may understand that you can use a generator to create a Model. You also understand that the generator also cre...
Ruby On Rails Developer Sharing What I Learn You should follow him on Twitter
You may understand that you can use a generator to create a Model. You also understand that the generator also cre...
If you’re following a Rails tutorial you’ve probably seen some code like this in a controller:
You can add validations to our Rails model files to make sure that only correct data gets saved to the database. F...
Associations are the way you tell Rails how models are related to each other in the database. Think of a blog site...
Devise is a Ruby Gem that is used for User Authentication in Rails Apps. It handles sign-in, sign-out, password se...
ActionCable is feature of Ruby on Rails that brings in the usage of websockets. With it you can build cool things ...
Partials in Ruby on Rails keeps from writing the same code over and over again in your views. If you had a new blo...
The syntax for symbols is a colon then a word :symbol
In Ruby on Ra...
In Ruby instance variables start with the @ sign
Embedded Ruby aka ERb. is a templating system that Ruby on Rails uses to show dynamic content on your website.
...
In Ruby on Rails helpers are methods that let you have reuseable code that can be used in different the views of y...
To store data in Ruby on Rails you use a model (The M in MVC). Models communicate with the database of the site.
Ruby on Rails is very powerful framework even more powerful than I thought. When I created my first resource using...