Skip to content

Releases: provpup/contact_list

ActiveRecord version of contact list

22 Feb 23:19
Compare
Choose a tag to compare

Summary of design changes

The third version of the contact list communicates using ActiveRecord with a PostgreSQL database to store user contact information. Via the CLI, in addition to the features of the second version, we allow the user to:

  • add/update/remove phone numbers

Manual ORM version of contact list app

18 Feb 17:42
Compare
Choose a tag to compare

Summary of design changes

The second version of the contact list communicates with a PostgreSQL database to store user contact information. Via the CLI, we allow the user to:

  • create a new contact with first and last name, e-mail address
  • show a particular user given an id
  • list all user contact information
  • search for contacts by first name, last name, or email
  • remove a particular user given an id
  • update a particular user given an id
  • show a help message

CSV version of contact list app

17 Feb 19:19
Compare
Choose a tag to compare

Summary of design changes

The first version of the contact list uses a CSV file as a database to store user contact information. Via the CLI, we allow the user to:

  • create a new contact with first and last name, e-mail address, and optional phone numbers
  • show a particular user given an id
  • list all user contact information
  • search for contacts that contain a string
  • show a help message