summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Cyrus <tcyrus@users.noreply.github.com>2016-01-16 16:04:10 -0500
committerTimothy Cyrus <tcyrus@users.noreply.github.com>2016-01-16 16:04:10 -0500
commit54654195a67cf55eac33e226526a9bfb47a00d1a (patch)
treedb6b2f9c6548ca55a3c86cd10d3c0c374aed097b
parentde31a04b5ac999d5d690cd73a3db31009bb93669 (diff)
downloadchef-54654195a67cf55eac33e226526a9bfb47a00d1a.tar.gz
Update README.md
-rw-r--r--README.md47
1 files changed, 25 insertions, 22 deletions
diff --git a/README.md b/README.md
index 1c1c83ca07..127d527f48 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Chef
-[![Code Climate](https://codeclimate.com/github/chef/chef.png)](https://codeclimate.com/github/chef/chef)
+[![Code Climate](https://codeclimate.com/github/chef/chef.svg)](https://codeclimate.com/github/chef/chef)
[![Build Status Master](https://travis-ci.org/chef/chef.svg?branch=master)](https://travis-ci.org/chef/chef)
[![Build Status Master](https://ci.appveyor.com/api/projects/status/github/chef/chef?branch=master&svg=true&passingText=master%20-%20Ok&pendingText=master%20-%20Pending&failingText=master%20-%20Failing)](https://ci.appveyor.com/project/Chef/chef/branch/master)
@@ -20,7 +20,7 @@ This README focuses on developers who want to modify Chef source code.
If you just want to use Chef, check out these resources:
* [learnchef](https://learn.chef.io): Getting started guide
-* [http://docs.chef.io](http://docs.chef.io): Comprehensive User Docs
+* [docs.chef.io](http://docs.chef.io): Comprehensive User Docs
* [Installer Downloads](https://www.chef.io/download-chef-client/): Install Chef as a complete package
## Installing From Git
@@ -32,8 +32,8 @@ to get a prebuilt package.
### Prerequisites
-Install these via your platform's preferred method (apt, yum, ports,
-emerge, etc.):
+Install these via your platform's preferred method (`apt`, `yum`, `ports`,
+`emerge`, etc.):
* git
* C compiler, header files, etc. On Ubuntu/Debian, use the
@@ -46,21 +46,22 @@ emerge, etc.):
Then get the source and install it:
- # Clone this repo
- git clone https://github.com/chef/chef.git
+```bash
+# Clone this repo
+git clone https://github.com/chef/chef.git
- # cd into the source tree
- cd chef
+# cd into the source tree
+cd chef
- # Install dependencies with bundler
- bundle install
+# Install dependencies with bundler
+bundle install
- # Build a gem
- bundle exec rake gem
-
- # Install the gem you just built
- gem install pkg/chef-VERSION.gem
+# Build a gem
+bundle exec rake gem
+# Install the gem you just built
+gem install pkg/chef-VERSION.gem
+```
## Contributing/Development
@@ -83,7 +84,7 @@ copy of the source running.
## Reporting Issues
-Issues can be reported by using [GitHub issues](https://github.com/chef/chef/issues).
+Issues can be reported by using [GitHub Issues](https://github.com/chef/chef/issues).
Full details on how to report issues can be found in the [CONTRIBUTING](https://github.com/chef/chef/blob/master/CONTRIBUTING.md#-chef-issue-tracking) doc.
@@ -99,14 +100,16 @@ against the repository you think best fits and it will be directed to the approp
We use RSpec for unit/spec tests. It is not necessary to start the development
environment to run the specs--they are completely standalone.
- # Run All the Tests
- bundle exec rake spec
+```bash
+# Run All the Tests
+bundle exec rake spec
- # Run a Single Test File
- bundle exec rspec spec/PATH/TO/FILE_spec.rb
+# Run a Single Test File
+bundle exec rspec spec/PATH/TO/FILE_spec.rb
- # Run a Subset of Tests
- bundle exec rspec spec/PATH/TO/DIR
+# Run a Subset of Tests
+bundle exec rspec spec/PATH/TO/DIR
+```
When you submit a pull request, we will automatically run the functional and unit
tests in spec/functional/ and spec/unit/ respectively. These will be run on Ubuntu