From ab59e90d2490f0bd7c24669db9c1eee75b0aec90 Mon Sep 17 00:00:00 2001 From: Gustavo Valenzuela Date: Mon, 26 Jun 2023 15:56:30 -0700 Subject: [PATCH] Edits README.md to include testing and rubocop info --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38ea98c8..c24122e7 100644 --- a/README.md +++ b/README.md @@ -94,12 +94,21 @@ git checkout -b your-feature-branch-name ```bash git add . git commit -m "Add your commit message here" +``` +3. Running Test +```bash + bundle exec rspec +``` + +4. Cleaning up before pushing +```bash + bundle exec rubocop -A ``` -3. Push your changes to origin: +5. Push your changes to origin: ```bash git push origin your-feature-branch-name ``` -4. Create a new pull request on the original repository and wait for the maintainer to review and merge your changes. +6. Create a new pull request on the original repository and wait for the maintainer to review and merge your changes.