README.md in drg-0.15.5 vs README.md in drg-0.15.6
- old
+ new
@@ -1,25 +1,22 @@
# DRG
-[![Code Climate](https://codeclimate.com/github/ridiculous/drg/badges/gpa.svg)](https://codeclimate.com/github/ridiculous/drg)
[![Gem Version](https://badge.fury.io/rb/drg.svg)](http://badge.fury.io/rb/drg)
A suite of rake tasks to help you test and manage your project.
The `drg:pin` suite provides enhanced dependency management with Bundler. You can pin Gem versions to the current or the next
available minor, major or patch level version.
The `drg:spec` task generates RSpec scaffolding for existing code. This helps bootstrap your tests and guide you in what
-[I think] you should be testing.
+you should be testing.
## Requirements
* Bundler 1.10+
## Installation
-Add this line to your application's Gemfile:
-
```ruby
gem 'drg'
```
## Tasks
@@ -139,10 +136,10 @@
### drg:pin:patch
Want to pin gems at their __patch__ version?
```bash
-rake drg:pin:minor
+rake drg:pin:patch
```
This task will update your Gemfile with the approximate gem's patch version. It'll change:
```ruby