Gems
Gems are Ruby Libraries, and the gem command is like npm in the nodeJS world. Here are some of the main Gem commands.
Bundler
Keeping tracks of which Gems are used in a project can be tricky. Similar to package.json in Node you have a Gemfile that lists a projects dependencies. With bundler you can make sure all these Gems are installed.
Ruby on Rails CLI
The Ruby on Rails CLI has several commands to make assempling your rails project very easy. Here are some of those commands.
Active Record Types
Active Record is the ORM that Ruby on Rails uses to work with SQL databases. When using generator commands you can specify fields and types to quickly generate models and migrations. Here are the many Active Record types.
Model Macros
In your models there are several macros that help add features and functionality to your models.
Route Macros
Macros for Routes