Project

woro-s3

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Adapter to Amazon S3 for use in Woro remote task management
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

 Project Readme

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

  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