padrino-tutorial/getting-started
This is the basic library that provides the chat functionality to our apps.
Add this line to your application's Gemfile:
gem 'padrino-tutorial-chat-lib', require: 'padrino-tutorial/chat-lib'And then execute:
$ bundle
Or install it yourself as:
$ gem install padrino-tutorial-chat-lib
TODO: Write usage instructions here
See padrino-tutorial/getting-started to setup your dev environment.
Before starting any develpment, cd into this gem's directory and run:
gem_home .
To install dependencies:
bundle
To start a console and test it, run:
irb -I lib -r 'padrino-tutorial/chat-lib'
To run tests:
rake test
- Fork it ( https://github.com/[my-github-username]/padrino-tutorial-chat-lib/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request