Skip to content

Zakui/ChatGem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChatEngine

Chat Engine for real time chat between users

Usage

How to use my plugin.

Installation

Add this line to your application's Gemfile:

gem 'chat_engine'

And then execute:

$ bundle

Or install it yourself as:

$ gem install chat_engine

then run

$ rails g chat_engine:install

for generating channel javascript

$ rails g chat_engine:channels

after generating channels do the following Add toastr to application.css and application.js:

*= require toastr in application.css

//= require toastr in application.js

add following association in your user model

  has_many :chat_subscribers, as: :subscriber, class_name: 'ChatEngine::ChatSubscriber'
  has_many :chats, through: :chat_subscribers, class_name: 'ChatEngine::Chat'
  has_many :messages, as: :sender, class_name: 'ChatEngine::Message'

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.

About

rails realtime chat gem

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published