woro-gist
Gist-Adapter for Woro remote task management. Using Github's gist, you keep version control of the tasks and can share them with colleagues.
Usage
On initialization of a new project, you can choose and setup Gist-configuration with:
$ woro init
If you already have a configuration, you can add these lines to you lib/config/woro.yml
adapters:
gist:
gist_id: <ID of gist you want to append task files to>
Use gist
as adapter to upload your task to.
$ woro push gist:cleanup_users
Attention, depending on whether you set up a Gist/Github login on initialization. These tasks are online anonymous, but public, or private under the specified Github account.
Now, to run a task remotely using Mina, specify the task:
$ mina woro:run task=gist:cleanup_users
Or to run it with Capistrano:
$ cap woro:run task=gist:cleanup_users
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request