next_meetup = Event.new('february-meetup-2014')
attendees = next_meetup.attendees.select do |attendee|
attendee.events.one? && attendee.events.first == next_meetup
end
attendees.each(&:greet)This is a program that greets all the newcomers to the RUG::B.
bundle && ruby newcomers.rb