
Ruby on Rails 7 is out! Code along on a guided journey through the Ruby on Rails 7 Getting Started Guide with Test Driven Development. There has never been a better time to learn Ruby on Rails. Hit the ground running with the newest version!
Rails 7 Getting Started Guide topics
The Ruby on Rails 7 Getting Started guide provides you with the basics that you need to get up and running. By the end of the guide you will have a simple blog up and running with the ability to create, read, update, and delete (CRUD) articles and comments on the blog. The guide teaches you the basics about the Rails model, view, controller (MVC) framework. As a result, you’ll learn the following:
- Generate controllers with actions
- Create and modify Rails routes
- Create models and database migrations and validate input
- Interact with your data in the Rails console
- Display your content to the web page with views and refactor repeated code into partials
- Associate child comments with parent articles
- Refactor repeated logic into concerns shared by multiple models
- Authenticate users with basic authentication in your controllers
Get Started with Rails the Stateless Code Way
Our video series amplifies the guide by adding a little bit more to the journey. We use Test Driven Development with MiniTest to make sure our application does what we want it to do. In addition, we leave the mistakes in the videos on purpose so that you can learn how to troubleshoot when you see errors.
After we complete the guide, we’ll explore some of the other goodies in Rails 7:
- Use ActionText to give your users a rich text editor
- Add
broadcasts_to
in a model to communicate updates in real-time - Improve styling by importing styles from a Content Distribution network
- Create a mailer that notifies users when significant events occur in your application
- Add a Stimulus controller for additional client-side interaction
Videos in the Series
In addition to working through this series on our site, you can view the playlist on YouTube.
- Install, Create Project, and Start Server
- Setup Git and Create the First Controller
- Autoloading, Generate and Migrate a Model
- Model CRUD in the Console and Listing Articles
- Show a Single Article
- Resourceful Routes for Articles and the link_to Helper
- Create Articles in the Application
- Model Validations and Form Error Messages
- Update an Article and Use Form Partials
- Destroy an Article and Get it Working with Turbo
- Use a Scaffold Generator to Quickly Produce a Resource
- Add a Model and Route for Comments
- Create Comments for an Article
- Refactor into Comment Partials
- Prepare for Concerns
- Refactor Repeated Code Using Concerns
- Refactor Tests
- Destroy Comments with Turbo
- Basic Auth Part 1
- Basic Auth Part 2 and Finish the Guide
- Upgrades, Bug Fixes, and Tweaks
- Broadcast Comment Changes to the Article with Turbo
- Add Styles from CDNs to Improve Design
- Use ActionText for Rich Text Content
- Set Up a Comments Mailer
- Fix Rich Text Fixtures and Validations
- Add a Stimulus Controller for Client-Side Interaction
- Retrospective for the Series
Source Code on GitHub
We make all of the source code for this project available in our GitHub Rails 7 Getting Started repo. In addition, we release any work unique to this project under the UNLICENSE and CC0 – No rights reserved.