imranhossainemi / catalog_of_my_things

"Catalog of my things" should be a simple console app that allows users to manage collections of the things they own.
MIT License
1 stars 1 forks source link

Feature-branch #37

Closed ikoote1 closed 1 year ago

ikoote1 commented 1 year ago

### Changes made to our code;

  1. Created Item class in a separate .rb file.
  2. Added all methods visible in the diagram.
  3. Implemented these methods:
  1. Created a main.rb file that serves as my console app entry-point.
  2. Implement startup actions:
  1. Created a Book class in a separate .rb file.
  2. Created a Label class with an association to the Item class (in a separate .rb file).
  3. Implemented all the required methods for book class and label class.
  4. Added unit tests for the two classes above.
  5. Created MusicAlbum class in a separate .rb file.
  6. Created Genre class with an association to the Item class (in a separate .rb file).
  7. Implemented all the required methods for MusicAlbum class and Genre class.
  8. Added unit tests for the two classes above.
  9. Created a Game class in a separate .rb file. 15.Created an Author class with an association to the Item class (in a separate .rb file).
  10. Implemented all the required methods for Game class and Author class.
  11. Added unit tests for the two classes above.
  12. Added schemas for all the required classes.
  13. Added a readme file.
  14. Recorded a video about the project.
  15. Opened a pull request.

Thanks for reviewing my project.