class Album
Attributes
artist[RW]
image[RW]
rank[RW]
title[RW]
Public Class Methods
new(title, artist, rank, image)
click to toggle source
# File lib/album.rb, line 7 def initialize(title, artist, rank, image) @title = title @artist = artist @rank = rank @image = image end