Purpose
This provides a simple way to fetch files from an s3 bucket using the AWS Ruby SDK.
Once this gem is installed you can use it to download the contents of a remote s3 bucket.
For example
bundle exec s3-toolkit fetch s3://remote-bucket/config/ config/
To show all available options
bundle exec s3-toolkit --help
Release
To publish a new version of this gem the following steps must be taken.
- Update the version in the following files
CHANGELOG.md lib/s3-toolkit/version.rb
- Create a tag using the format v0.1.0
- Follow build progress in GitHub actions
Contributing
- Fork it ( https://github.com/sealink/s3-toolkit/fork )
- 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 a new Pull Request