Teamlab
Ruby Framework to interact with TeamLab API 2.0
Installation
Add this line to your application's Gemfile:
gem 'teamlab'
And then execute:
$ bundle
Or install it yourself as:
$ gem install teamlab
Usage
First of all, you should configure your enviroment by commands
$ Teamlab.configure do |config|
$ config.server = 'example.teamlab.com'
$ config.username = 'foo'
$ config.password = 'bar'
$ end
and then call methods you need:
$ Teamlab.people.get_people
Contributing
- Fork it
- 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 new Pull Request