| Class Song |
|
Internal representation of a song
| Methods |
| Attributes |
| :artist | [R] | |
| :title | [R] |
| Public Class methods |
| new(artist, title) |
Initialize from components.
# File db/disc.rb, line 50 def initialize(artist, title) @title = title @artist = artist end