How to raise timeout error using koala gem for Facebook in Rails ?
if anybody knows, please let me know.
You can use ruby's Timeout module as follows:
require 'timeout'
begin
status = Timeout::timeout(5) do
@koala_api.get_connection 'me', :feed
end
rescue Timeout::Error
# do something on timeout
end