Ruby on Rails

Ruby on Rails

Chapter 11: Authentication with Devise

Add sign up, sign in, and sign out to your blog with the Devise gem, and protect actions so only.

Read More
Ruby on Rails

Chapter 12: Final Capstone Project – Build a Task Manager

Put everything together in a complete Task Manager app with authentication, associations, and validations.

Read More
Ruby on Rails

Chapter 10: Blog Project Part 2 – Comments and Associations

Add comments to the blog with has_many and belongs_to associations, a Comment model, and a comment form.

Read More
Ruby on Rails

Chapter 8: Example Project – Build a Blog App with CRUD

Build a full blog application with the scaffold command, resources, and validations.

Read More
Ruby on Rails

Chapter 9: Testing, Debugging, and Next Steps

Run the Rails test suite, debug with the console, and discover what to learn next.

Read More
Ruby on Rails

Chapter 1: Introduction to Ruby on Rails

Learn what Ruby on Rails is, why it is great for beginners, and how the MVC pattern keeps your code.

Read More
Ruby on Rails

Chapter 2: Installing Ruby and Rails

Install Ruby and Rails on Windows, macOS, or Linux and verify everything works with simple commands.

Read More
Ruby on Rails

Chapter 3: Creating Your First Rails Application

Create your first Rails project, start the development server, and explore the project structure.

Read More
Ruby on Rails

Chapter 4: Routing in Rails

Understand routes, HTTP verbs, and the resources method that generates RESTful routes.

Read More
Ruby on Rails

Chapter 5: Controllers and Views with ERB

Generate controllers, pass data to views, and use ERB tags to display dynamic content.

Read More