Class: Muzak::Album

Inherits:
Object
  • Object
show all
Defined in:
lib/muzak/album.rb

Overview

Represents a collection of songs for muzak.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(title, songs, cover_art = nil) ⇒ Album



16
17
18
19
20
# File 'lib/muzak/album.rb', line 16

def initialize(title, songs, cover_art = nil)
  @title = title
  @songs = songs
  @cover_art = cover_art
end

Instance Attribute Details

#cover_artString (readonly)



11
12
13
# File 'lib/muzak/album.rb', line 11

def cover_art
  @cover_art
end

#songsArray<Muzak::Song> (readonly)



8
9
10
# File 'lib/muzak/album.rb', line 8

def songs
  @songs
end

#titleString (readonly)



5
6
7
# File 'lib/muzak/album.rb', line 5

def title
  @title
end