summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHemant Kumar <gethemant@gmail.com>2013-07-16 08:55:06 +0530
committerHemant Kumar <gethemant@gmail.com>2013-07-16 09:08:49 +0530
commit96e21e416d32ce3c41f45e48e84577987ae5ffbe (patch)
tree5a9658f5686bfbc0bca81d8a09c3da1b081d73f8 /README.md
parentea4ae196a3c519781802a050248c6929ef4229b4 (diff)
downloadbundler-96e21e416d32ce3c41f45e48e84577987ae5ffbe.tar.gz
Add CodeClimate badge
[ci skip]
Diffstat (limited to 'README.md')
-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.