close #340; Remove unnecessary require statement from InstallGenerator

This commit is contained in:
Ben Atkins 2014-03-07 16:13:32 -05:00
parent 8cd1426b01
commit 72f5215c69
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## 3.0.1 (Unreleased)
- [#340](https://github.com/airblade/paper_trail/issues/340) - Prevent potential error encountered when using the `InstallGenerator`
with Rails `4.1.0.rc1`.
- [#329](https://github.com/airblade/paper_trail/issues/329) - Add `touch_with_version` method to `PaperTrail::Model::InstanceMethods`,
to allow for generating a version `touch`ing a model.
- [#328](https://github.com/airblade/paper_trail/pull/328) / [#326](https://github.com/airblade/paper_trail/issues/326)/

View File

@ -1,5 +1,4 @@
require 'rails/generators'
require 'rails/generators/migration'
require 'rails/generators/active_record'
module PaperTrail