summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHemant Kumar <hemant@codemancers.com>2013-07-16 07:16:31 -0700
committerHemant Kumar <hemant@codemancers.com>2013-07-16 07:16:31 -0700
commitb78887c71242890ae19e5128b34b5b6018fe6ea6 (patch)
tree5a9658f5686bfbc0bca81d8a09c3da1b081d73f8
parentea4ae196a3c519781802a050248c6929ef4229b4 (diff)
parent96e21e416d32ce3c41f45e48e84577987ae5ffbe (diff)
downloadbundler-b78887c71242890ae19e5128b34b5b6018fe6ea6.tar.gz
Merge pull request #2542 from bundler/add-codeclimate-badge
Add CodeClimate badge
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index c5fc1fcc14..a6427b905f 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
-# Bundler: a gem to bundle gems [![Build Status](https://secure.travis-ci.org/bundler/bundler.png?branch=1-3-stable)](http://travis-ci.org/bundler/bundler)
+[![Code Climate](https://codeclimate.com/github/bundler/bundler.png)](https://codeclimate.com/github/bundler/bundler)
+[![Build Status](https://secure.travis-ci.org/bundler/bundler.png?branch=1-3-stable)](http://travis-ci.org/bundler/bundler)
+# Bundler: a gem to bundle gems
Bundler keeps ruby applications running the same code on every machine.
It does this by managing the gems that the application depends on. Given a list of gems, it can automatically download and install those gems, as well as any other gems needed by the gems that are listed. Before installing gems, it checks the versions of every gem to make sure that they are compatible, and can all be loaded at the same time. After the gems have been installed, Bundler can help you update some or all of them when new versions become available. Finally, it records the exact versions that have been installed, so that others can install the exact same gems.