Gittr
Gittr is a Ruby wrapper for the Gitter chat client REST API. Check out Gitter if you haven't already!
Installation
Add this line to your application's Gemfile:
gem 'gittr'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gittr
Usage
Creating a client with your API token.
Gittr.configure do |config|
config.token = 'abc123'
end
client = Gittr::Client.new
The Gittr::Client
implements all endpoints as described in the Gitter Documentation for the REST API.
Contributing
- Fork it ( https://github.com/zoso10/gittr/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