Added missing ActiveModel::Naming dependency.

ActiveModel::Name constructor expects to be able to call #blank? on a
String but the core Object#blank? extension is never required.
This commit is contained in:
Shane Hanna 2012-03-09 15:46:24 +11:00
parent 657095d8bb
commit 2b97b8fb9e
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@ require 'active_support/inflector'
require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/module/introspection'
require 'active_support/core_ext/module/deprecation'
require 'active_support/core_ext/object/blank'
module ActiveModel
class Name < String