0.0
No commit activity in last 3 years
No release in over 3 years
Teamwork API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 2.14
~> 11.1
~> 3.4
~> 0.69.0
~> 0.11
~> 2.0

Runtime

 Project Readme

TeamworkApi

Build Maintainability Test Coverage

The Teamwork API gem allows you to consume the Teamwork API

Installation

Add this line to your application's Gemfile:

gem 'teamwork_api'

And then execute:

$ bundle

Or install it yourself as:

$ gem install teamwork_api

Usage

Over time this project intends to have a full Teamwork API. At the moment there are only a few endpoints available:

client = TeamworkApi::Client.new('https://yoursite.teamwork.com')
client.api_key = 'YOUR_API_KEY'

# Project endpoints
client.projects                                 #=> Gets all projects
client.project(57)                              #=> Gets the project with id 57
client.delete_project(57)                       #=> Deletes the project with id 57
client.create_project(                          #=> Creates a new project
  name: 'My Project'
)
client.update_project(                          #=> Updates project with id 57
  57,
  name: 'Renamed Project'
)

# Company endpoints
client.companies                                #=> Gets all companies
client.company(51)                              #=> Gets the company with id 51
client.company_by_name('ABC Corp')              #=> Gets the company with name "ABC Corp"

# People endpoints
client.people                                   #=> Gets all people
client.person(49)                               #=> Gets the person with id 49
client.add_person_to_project(57, 49)            #=> Adds the person with id 49 to the project with id 57
client.set_permissions(                         #=> Sets the person with id 49 as an administrator of the project with id 57
  57,
  49,
  'project-administrator': true
)

# Project Owner endpoints
client.project_owner(57)                        #=> Gets the owner details for the project with id 57

# Task List endpoints
client.task_lists                               #=> Gets all task lists
client.task_list(45)                            #=> Gets the task list with id 45
client.delete_task_list(45)                     #=> Deletes the task list with id 45
client.create_task_list(                        #=> Creates a new task list for the project with id 57
  57,
  name: 'My list'
)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/100yrs/teamwork_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

  1. Fork it
  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 new Pull Request

Acknowledgements

The structure and much of the helper code for this gem was borrowed from the Discourse API gem.

License

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

Code of Conduct

Everyone interacting in the TeamworkApi project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.