class MeetingFinder::Meeting

Attributes

address[R]
day[R]
lat[R]
lng[R]
location[R]
name[R]
time[R]

Public Class Methods

new(attributes={}) click to toggle source
# File lib/meeting_finder/meeting.rb, line 4
def initialize(attributes={})
  @name = attributes['name']
  @location = attributes['location']
  @address = attributes['address']
  @day = attributes['day']
  @time = attributes['time']
  @lat = attributes['lat']
  @lng = attributes['lng']
end