Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

45 lines (39 loc) · 1.17 KB

How to Contribute

Welcome! Thanks so much for considering making a contribution to this project.

  1. Fork this repository
  2. Clone your forked version of the repository to your machine by running the following in a command line:
git clone https://github.com/[ YOUR GITHUB USERNAME ]/dharma_quotes.git
  1. Navigate into the project's root directory
cd dharma_quotes
  1. Install dev dependencies (bundler 2.1.2)
bundle install
  1. Run all the tests & cops
rspec
rubocop
  1. Make your contribution! Maybe start by adding a quote to one of the existing quote libraries. Don't git commit just yet though...
  2. Rerun all the tests & cops
rspec
rubocop

Has your contribution caused any of them to break? If so, please fix their poor lil broken hearts :<

Don't forget to keep testing as you go until all of them pass.

  1. Add your name to cool_dudes.md!
  2. When you've finished contributing, run these commands in your command line:
git add .
git commit -m "[ YOUR MESSAGE ]"
git push
  1. Open a pull request to have your contribution merged into the project 🚀

Your help is greatly appreciated. Happy coding!