Gift Guide — My Rails Project

Jessica Watts
1 min readDec 4, 2020

After completing the third module in my software engineering course at Flatiron School it was time to tackle another project! This project was completed using what we learned about Rails.
This app was created with the idea of being able to keep track of your gift lists and all the gifts needing purchased.
The first thing I did was install Devise and this “gem” is really a gem! By utilizing Devise and OAuth my app was capable of enabling third party log in, sign up and log out.

Next it was on to the MVC of the project:

Models:
The app had 3 models creating relationships between users, lists and gifts.

Controllers:
Gift Guide has 5 controllers which contain the logic that gets executed and displayed in the views.
The controllers are:
Application, Callbacks (OAuth),
Registrations (handles sign up),
Gift (creates, displays, and edits gifts),
List (displays logged in user lists).

Views:
The views contain the HTML responsible for the functioning and view of the app. Check out the github repo here .

Originally published at https://jwatts82.github.io on December 4, 2020.

--

--