class Abcdistill::Book

Attributes

authorname[RW]
description[RW]
genre[R]
pages[RW]
publishdate[RW]
title[R]

Public Class Methods

all() click to toggle source
# File lib/abcdistill/book.rb, line 12
def self.all
  @@all
end
new(title, link = "", genre = "") click to toggle source
# File lib/abcdistill/book.rb, line 5
def initialize(title, link = "", genre = "")
  @title = title
  @link = link
  @genre = genre
  @@all << self
end