search for: event_searcher

Displaying 2 results from an estimated 2 matches for "event_searcher".

2011 Jan 03
8
Heroku, needs constant AppController updates?
...rform end #of class -------------- Suggested Events class SuggestedEventsController < ApplicationController #.... other functions removed for brevity.... def search_all_events logger.debug"Sugg E search all events" #the instance of the object that gets put on the queue @event_searcher = EventSearcher.new @event_searcher.one_event_id = nil @event_searcher.all_events = 1 Delayed::Job.enqueue @event_searcher flash[:notice] = "Finding All events, this takes a while, refresh after 10 mins" redirect_to suggested_events_path end end -- Posted via http://www....
2011 Apr 08
0
eventbright gem
Hi, I am using eventbright gem for getting the event brite events. I am doing like as follows:- EventBright.setup(api_key) res= EventBright.call("event_search", {:latitude=>37.3229978, :longitude=>-122.0321823}) puts res.inspect I am getting the response as the HTTPARTY object. Can anyone tell me how can I parse the response? Also, I think I am missing something during