Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/music genre/mike #49

Closed
wants to merge 19 commits into from
Closed

Feature/music genre/mike #49

wants to merge 19 commits into from

Conversation

Mike47ip
Copy link
Collaborator

@Mike47ip Mike47ip commented Oct 25, 2023

The following project requirements were satisfied:

  • Create MusicAlbum class in a separate .rb file.

  • Create Genre class with an association to the Item class (in a separate .rb file).

  • All MusicAlbum class properties visible in the diagram should be defined and set up in the constructor method.

  • All Genre class properties visible in the diagram should be defined and set up in the constructor method.

  • - Implement methods:

    • add_item method in the Genre class
      • should take an instance of the Item class as an input
      • should add the input item to the collection of items
      • should add self as a property of the item object (by using the correct setter from the item object)
    • can_be_archived?() in the MusicAlbum class
      • should override the method from the parent class
      • should return true if parent's method returns true AND if on_spotify equals true
      • otherwise, it should return false
  • - The following options should be available:

    • List all music albums
    • List all genres (e.g 'Comedy', 'Thriller')
    • Add a music album

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment