module RMeetup::Poster

Public Class Methods

for(type) click to toggle source

Return a fetcher for given type

# File lib/rmeetup/poster.rb, line 9
def for(type)
  return  case type.to_sym
          when :event_comment
            EventComment.new
          end
end