Re: [Rails] Adding instant messaging to a rails application

2013-12-10 Thread tamouse pontiki
On Thu, Dec 5, 2013 at 4:05 AM, bertly_the_coder much...@gmail.com wrote: Hi guys, I have a membership based application and would like to add a chat/instant messaging feature for members to chat amongst each other. I'm thinking facebook chat where the chats are either chat(when both are

Re: [Rails] Adding instant messaging to a rails application

2013-12-09 Thread Paul
I'm sorry you didn't get any responses to this. I've been trying to get it working, too. If you make any progress, please let us know on this list. -- For my purposes, it was sufficient to create a once-a-minute polling loop to ping the server, but I'd much rather figure out how to do the server

Re: [Rails] Adding instant messaging to a rails application

2013-12-09 Thread muchira k.
Yeah! It's a pretty extensive project apparently! I'm going to see how far the client want to go and then work on it. On Monday, December 9, 2013, Paul wrote: I'm sorry you didn't get any responses to this. I've been trying to get it working, too. If you make any progress, please let us know

Re: [Rails] Adding instant messaging to a rails application

2013-12-09 Thread Sathia S
Have you heard about Faye. This is good gem for implementing chat and notification feature in Ruby on rails. Have a look into it. You can subscribe and listen to a node using faye. http://railscasts.com/episodes/260-messaging-with-faye https://github.com/jamesotron/faye-rails On Thu, Dec 5,

[Rails] Adding instant messaging/chat to rails application

2013-12-05 Thread bertly_the_coder
Hi guys, I have a membership based application and would like to add a chat/instant messaging feature for members to chat amongst each other. Any suggestions? -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group

[Rails] Adding instant messaging to a rails application

2013-12-05 Thread bertly_the_coder
Hi guys, I have a membership based application and would like to add a chat/instant messaging feature for members to chat amongst each other. I'm thinking facebook chat where the chats are either chat(when both are online) or are delivered to the inbox, when offline or blocked. Any