Project

rasana

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

Development

>= 0

Runtime

~> 1.3
~> 0.8.7
>= 0
>= 0
~> 0.18.1
 Project Readme

Rasana

Command-line interface for Asana API written in Ruby.

Installation

$ gem install rasana

Usage

First, create ~/.rasana.yml and fill your Asana api_key.

$ cat ~/.rasana.yml
api_key: xxxxxx.xxxxxxxxxxxxxxxxxxxx

Then you can access to Asana API. At first find out who am I.

$ asana me
id: 8808888888
name: memerelics
email: hoge@gmail.com
workspaces:
  - 1111111111111: 'boring job'
  - 2222222222222: 'favorite_workspace'

Display tasks assigned to you.

$ asana tasks
  * Identify resources to be monitored.
  * Define users and workflow
  * Identify event sources by resource type.
  * Define the relationship between resources and business systems.
  * Identify tasks and URLs by resource type.
  * Define the server configuration.

Also you can limit result by --on option.

$ asana tasks --on favorite_workspace
  * Define the server configuration.

Others...

$ asana projects
1111111111111: ProjectX
3333333333333: My Important Project

$ asana tags
1111111111111: tagA
2222222222222: tagB

Show help.

$ asana help
$ asana help tasks

TODO

  • POST/PUT/DELETE.
  • tasks on a project.
  • tasks on a tag.
  • GitHub integration.
  • Make it faster.

Contributing

  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