Project

s3-toolkit

0.0
No release in over a year
Simple tools to download contents of s3 buckets when the aws cli is to big a dependency to use
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Ruby Style Guide Gem Version Build Status Coverage Status

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

  1. Fork it ( https://github.com/sealink/s3-toolkit/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