class RMeetup::Type::Rsvp

Edited by Jason Berlinsky on 1/20/11 to allow for arbitrary data access See www.meetup.com/meetup_api/docs/ew/rsvps/ for available fields

Attributes

rsvp[RW]

Public Class Methods

new(rsvp = {}) click to toggle source
# File lib/rmeetup/type/rsvp.rb, line 17
def initialize(rsvp = {})
  self.rsvp = rsvp
end

Public Instance Methods

lat() click to toggle source

Special accessors that need typecasting or other parsing

# File lib/rmeetup/type/rsvp.rb, line 27
def lat
  return self.rsvp['lat'].to_f
end
lon() click to toggle source
# File lib/rmeetup/type/rsvp.rb, line 30
def lon
  return self.rsvp['lon'].to_f
end
method_missing(id, *args) click to toggle source
# File lib/rmeetup/type/rsvp.rb, line 21
def method_missing(id, *args)
  return self.rsvp[id.id2name]
end