Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (27 loc) · 890 Bytes

CONTRIBUTING.md

File metadata and controls

40 lines (27 loc) · 890 Bytes

Contributing

We love contributions! Pull request away.

Hacking

You'll need Ruby and Bundler, of course. Then, check out the code and install the gems:

$ git clone [email protected]:WhoopInc/vagrant-s3auth.git
$ cd vagrant-s3auth
$ bundle

Hack away! When you're ready to test, either run the test suite or run Vagrant manually using the configured Bundler environment:

$ VAGRANT_LOG=debug bundle exec vagrant box add S3_URL

If you forget the bundle exec, you'll use system Vagrant—not the Vagrant that has your plugin changes installed!

Guidelines

We do ask that all contributions pass the linter and test suite. Travis will automatically run these against your contribution once you submit the pull request, but you can also run them locally as you go!

Linting

$ rake lint

Testing

See TESTING.