Troo

CLI interface for Trello. Named after Trello's mascot 'Roo'.

Features

troo refresh
troo refresh --lists
troo refresh --cards
troo default board <board_id>
troo default card <card_id>
troo default list <list_id>
troo add board <name>
troo add card <list_id>
troo add comment <card_id>
troo add list <board_id>
troo show boards
troo show board (<board_id>)
troo show list <list_id>
troo show card <card_id>
troo show comments <card_id>
troo move <card_id> <list_id>
troo cleanup
troo version

Requirements

  • A Trello account with API key/secret.
  • Ruby 2.1.0 (>= 1.9.3 should be fine.)
  • Redis.

Installation

Add this line to your application's Gemfile:

gem 'troo'

And then execute:

$ bundle

Or install it yourself as:

$ gem install troo

Usage

You will need user authentication tokens to access your Trello account.

1) Create your developer key at Trello:

https://trello.com/1/appKey/generate

2) Go to

https://trello.com/1/connect?key=your_key_here&name=troo&response_type=token&scope=read,write

3) Have fun, and tweet me @gavinlaking if you like it.

Todo

  • Fix multitude of sins.
  • Write cucumber integration tests.

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