From 083c58dd5c38403c8820f89b972bedef63892026 Mon Sep 17 00:00:00 2001 From: Tyler Walters Date: Thu, 28 May 2015 18:09:10 -0500 Subject: [PATCH] #30 - Updated contributing steps. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e66cab..cdde88e 100644 --- a/README.md +++ b/README.md @@ -116,16 +116,19 @@ Feedback and issues are welcome. The most welcome feedback is a Pull Request. 1. Navigate to the source repo, and then Fork it into your account using the button in the top-right. 1. Clone your fork onto your localhost and make your desired changes. -1. Run puppet lint. Travis CI will use command: +1. Setup bundle to run tests. Travis CI will use command: ``` export BUNDLE_GEMFILE=$PWD/.gemfile + ``` +1. Run puppet lint. Travis CI will use command: + ``` bundle exec rake lint ``` 1. Run rspec test. Travis CI will use command: ``` bundle exec rake spec SPEC_OPTS=’--format documentation’ ``` -1. Test everything again +1. Do a functional test against a test VM 1. Commit your changes and push up into your fork in GitHub. 1. Navigate to your forked repo, then click the green Compare icon in the top-left area of the source window. 1. Compare it to my branch, then click the Create Pull Request button to make a PR using the diff from your branch.