paper_trail 1.4.4 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +2 -6
- data/paper_trail.gemspec +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -217,13 +217,9 @@ And then use it in your tests like this:
|
|
|
217
217
|
|
|
218
218
|
## Installation
|
|
219
219
|
|
|
220
|
-
1. Install PaperTrail
|
|
220
|
+
1. Install PaperTrail as a gem via your `config/environment.rb`:
|
|
221
221
|
|
|
222
|
-
`config.gem 'paper_trail'
|
|
223
|
-
|
|
224
|
-
or:
|
|
225
|
-
|
|
226
|
-
`script/plugin install git://github.com/airblade/paper_trail.git`
|
|
222
|
+
`config.gem 'paper_trail'
|
|
227
223
|
|
|
228
224
|
2. Generate a migration which will add a `versions` table to your database.
|
|
229
225
|
|
data/paper_trail.gemspec
CHANGED