Lazarus Lazaridis
Lazarus Lazaridis

Reputation: 6029

Rails app and chat

I'm developing this application and I want to add chat for users.

I don't want to go with the ajax polling stuff.

Is there any other way to integrate chatting (any good gem or any suggestion)?

Upvotes: 2

Views: 908

Answers (4)

Niket
Niket

Reputation: 1115

You can check Faye gem

here is railsCaste for it

Upvotes: 0

strivedi183
strivedi183

Reputation: 4831

Your might want to check out Pusher, and they have an example chat app and here is their device compatibility. They also have a gem, they use web sockets (like @PaulProgrammer's suggestion) but fallback to flash for older browsers.

Hope this helps

Upvotes: 4

CDub
CDub

Reputation: 13344

Looks like people in this SO answer like Mad Chatter.

Upvotes: 3

PaulProgrammer
PaulProgrammer

Reputation: 17620

Web sockets. Maybe. For some browsers.

Upvotes: 2

Related Questions