class Quotes500::Quote
Attributes
content[R]
imgUrl[R]
rank[R]
Public Class Methods
new(author, imgUrl, content, rank)
click to toggle source
# File lib/quotes500.rb, line 9 def initialize(author, imgUrl, content, rank) @author = author @imgUrl = imgUrl @content = content @rank = rank end