Coursera Rails Module 3 Notes

| ruby | programming | learning |

I just finished the final module of this course. Overall I think it was a great course that provided a good overview of Ruby, and a thorough introduction to Rails. The next course dives into working with Databases and I am looking forward to learning more about Active Record.

Some Interesting Facts

Useful Resources

The lectures had a bunch of useful tools sprinkled throughout.

Things I love about Rails

Things I learned

General Rails Tooling

Testing with Rspec and Capybara

Once again, I cannot say how happy I am that this course dives right into all sorts of testing. Kudos to the JHU team for thinking about this important skill even in an introductory course. This module talked about doing acceptance testing with Capybara. We learned about:

Debugging

The built in debugging tools in development mode in rails are just awesome. You get an IRB console inside of the browser, this is super useful for debugging purposes. The gems that are responsible for this functionality are byebug and web-console.

Deploying To Heroku

The course walked us through how to deploy an app to Heroku. Super simple of course. It is really nice to be able to see your application out in the wild!

Pro Tip

The rails generator makes it super easy to create all of the files that you may need for a controller or model. However if you accidentally create a model with the wrong name and your project it huge it can be somewhat daunting to figure out what is safe to remove. You can reverse a rails generated command with:
rails d $TYPE $NAME
So for example, if I created a model called recipeee
rails g model recipeee
I could remove it with
rails d model recipeee
I can see how this will come in handy in the future.

Final Project

The final project is a simple web application called Recipe Finder that allows you to search for recipes using the food2fork api. I cleaned it up a bit and added an actual search bar (the assignment just had you add query params).

Thank you for reading! Share your thoughts with me on bluesky, mastodon, or via email.

Check out some more stuff to read down below.

Most popular posts this month

Recent Favorite Blog Posts

This is a collection of the last 8 posts that I bookmarked.

Articles from blogs I follow around the net

Pluralistic: Boss-politics antitrust and the MAGA crackup (29 Jul 2025)

Today's links Boss-politics antitrust and the MAGA crackup: The Tunney Act stirs the pot. Hey look at this: Delights to delectate. Object permanence: Hearware, 10,000 superballs; Bitcoin is not socialist; Stupid and dangerous video game cheating lawsu…

via Pluralistic: Daily links from Cory Doctorow July 29, 2025

What Are We Losing With AI?

Once it’s well integrated into our lives, any new technology can be seen as an exchange. We lose something and get something else in return. When we started using our calculator app, we lost the ability to do basic operations by hand, but we got accurate r…

via Articles on Jose M. July 29, 2025

Crypto lender Abra pauses withdrawals for international customers

The Abra cryptocurrency lender sent an email to customers announcing that "Abra Earn international services are currently paused, effective immediately", attributing the decision to "broader risk management efforts" a…

via Web3 is Going Just Great July 29, 2025

Generated by openring