Project

gittr

0.0
No commit activity in last 3 years
No release in over 3 years
Gittr is a Ruby wrapper for the Gitter chat client REST API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Gittr

Code Climate Test Coverage Circle CI

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

  1. Fork it ( https://github.com/zoso10/gittr/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request