class RetroCasts::Episode

Attributes

date[RW]
description[RW]
length[RW]
number[RW]
title[RW]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/retro_casts/episode.rb, line 5
def initialize(attributes = {})
  @title = attributes[:title]
  @number = attributes[:number]
  @date = attributes[:date]
  @length = attributes[:length]
  @link = attributes[:link]
  @description = attributes[:description]
end