📗 Table of Contents
📖 api_for_asana
This gem is an API wrapper for interacting with Asana. It allows me to create sections, retrieve tasks from a given section, update sections, and delete sections.
Installation
Add the following code to you Gemfile
gem 'api_for_asana'
Then run
bundler install
Usage
include
this gem on your controller like.
class HomesController < ApplicationController
include ApiForAsana
...
end
To get all section
Use get_sections method like below
get_sections
To update the section
Use update_section method like below
update_section(id, name)
To delete the section
Use delete_section method like below
delete_section(id)
To create new section
Use create_section method like below
create_section(name)
Run Test
on your terminal run
rspec spec
👥 Authors
👤 Melashu Amare
🤝 Contributing
This repo is open for contributions. Issues, and feature requests are welcome!
Feel free to check the issues page.
⭐️ Show your support
Give a star if you like this project!
(back to top)