README.md in object_attorney-3.1.1 vs README.md in object_attorney-3.1.2
- old
+ new
@@ -1,7 +1,7 @@
# Object Attorney
-This gem allows you to create use cases with ActiveModel validations and keep your model clean.
+This gem allows you to create **use cases**, **services** or **form objects** with ActiveModel validations and keep your model clean.
[![Code Climate](https://codeclimate.com/github/goncalvesjoao/object_attorney/badges/gpa.svg)](https://codeclimate.com/github/goncalvesjoao/object_attorney)
[![Test Coverage](https://codeclimate.com/github/goncalvesjoao/object_attorney/badges/coverage.svg)](https://codeclimate.com/github/goncalvesjoao/object_attorney/coverage)
[![Build Status](https://travis-ci.org/goncalvesjoao/object_attorney.svg?branch=master)](https://travis-ci.org/goncalvesjoao/object_attorney)
[![Gem Version](https://badge.fury.io/rb/object_attorney.svg)](https://badge.fury.io/rb/object_attorney)
@@ -65,5 +65,19 @@
UserValidator.new(@user).invalid? # true
@user.errors.messages # { first_name: ["can't be blank"] }
```
+
+## 3) Installation
+
+To install Object Attorney on the default Rails stack, just put this line in your Gemfile:
+```ruby
+gem 'object_attorney'
+```
+
+Then bundle:
+```
+$> bundle
+```
+
+and after that, I'd advise you to lock the gem's version in your Gemfile