Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Working example of Rails 3.1 + Juggernaut Instant Messenger?

Are there any decent example apps for an ruby on rails 3 instant Messenger app based on any of the publish-subscribe messaging system Juggernaut?

  • 1-1 chat with method of adding 2 users to a "conversation"
  • Ways to protect the 1-1 conversation to only visible to those 2 persons in it
  • basic frontend implementation
like image 994
Rubytastic Avatar asked Oct 11 '11 16:10

Rubytastic


2 Answers

If you are not already aware of it you may also be interested in pusher.com as a 'hassle free' alternative. The only drawbacks are that their free version is limited to a maximum of 20 connections and 100,000 messages per day.

like image 35
8bithero Avatar answered Oct 12 '22 23:10

8bithero


Here is an example which might help you:

https://github.com/maccman/holla

like image 78
Scholle Avatar answered Oct 13 '22 00:10

Scholle