GitXplorerGitXplorer
d

ticard

public
8 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
5be12a7fb61e0f672d2f13ff13508a7d15c137cd

up version

ddgsuarez committed 9 years ago
Unverified
9c4012a7c7581eaa2571bacd4bed70fe59c95401

allow rubygems publishing

ddgsuarez committed 9 years ago
Unverified
501b62a9705f5a7bd4589a38a7389559d521262a

up version

ddgsuarez committed 9 years ago
Unverified
358211668bfbcd990ca9e3396c77615327e86c9e

add check command

ddgsuarez committed 9 years ago
Unverified
ce4c370cc386ad03f1fdede485f91ea56b7560a1

add vim-ticard to readme

ddgsuarez committed 10 years ago
Unverified
b5b0dfe63b2a0d986f78f45d228f46da8eafbce3

gem-relative template path

ddgsuarez committed 10 years ago

README

The README file for this repository.

Ticard

Easily work with Trello cards from your own text editor:

$ ticard pull http://trello.com/c/a2343423/my-card
$ vi a2343423-my-card.md
...
$ ticard push a2343423-my-card.md

Installation

$ gem install ticard

Ticard needs trello read/write credentials in order to work. Create a .ticard.yml file in $HOME or the directory you'll be working from.

keys:
  developer_public_key:  'KEY'
  member_token:  'TOKEN'

To get the key and token, follow the steps given in ruby-trello's README.

Usage

  • ticard pull URL to download the description of the card to a file
  • ticard push PATH to upload the updated description.

The file created by ticard pull has an html comment with metadata at the top, this allows ticard push to save and check if modifications have been made to the card, so mess with them at your own risk 💩

Editor support

Development

After checking out the repo, run bin/setup to install dependencies. Then, 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 to create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

  1. Fork it ( https://github.com/dgsuarez/ticard/fork )
  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 a new Pull Request