class FiresideFinder::Gathering

Attributes

address[RW]
city[RW]
date[RW]
datetime[RW]
description[RW]
directions[RW]
name[RW]
venue[RW]

Public Class Methods

all() click to toggle source
# File lib/fireside-finder/gathering.rb, line 11
def self.all
  @@all
end
new() click to toggle source
# File lib/fireside-finder/gathering.rb, line 7
def initialize
  @name = name
end
reset() click to toggle source
# File lib/fireside-finder/gathering.rb, line 19
def self.reset
  @@all = []
end

Public Instance Methods

save() click to toggle source
# File lib/fireside-finder/gathering.rb, line 15
def save
  @@all << self
end