class ImpactHubEvents::Event

Attributes

date[RW]
description[RW]
location[RW]
time[RW]
title[RW]
url[RW]

Public Class Methods

all() click to toggle source
# File lib/impact_hub_events/event.rb, line 10
def self.all
  @@all
end
new(url) click to toggle source
# File lib/impact_hub_events/event.rb, line 5
def initialize(url)
  @url = url
  @@all << self
end