class TooHotToHandel::ClassicalReview
Attributes
blurb[RW]
content[RW]
title[RW]
url[RW]
Public Class Methods
all()
click to toggle source
# File lib/too_hot_to_handel/classical_review.rb, line 13 def self.all @@all end
new(title, blurb, url)
click to toggle source
# File lib/too_hot_to_handel/classical_review.rb, line 6 def initialize(title, blurb, url) @title = title @blurb = blurb @url = url @@all << self end