woro-s3
Adapter for Woro remote task management for using Amazons's S3 to share them with colleagues.
Usage
On initialization of a new project, you can choose and setup S3-configuration with:
$ woro init
If you already have a configuration, you can add these lines to you lib/config/woro.yml
adapters:
s3:
region: eu-west-1
bucket_name: <bucket name>
path: <path within bucket>
access_key_id: <access key id>
secret_access_key: <secret access key>
Use s3
as adapter to upload your task to.
$ woro push s3:cleanup_users
Attention, depending on the properties of the specified S3 bucket, the rake tasks may be public.
Now, to run a task remotely using Mina, specify the task:
$ mina woro:run task=s3:cleanup_users
Or to run it with Capistrano:
$ cap woro:run task=s3: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