mirror of https://github.com/rails/rails
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:
parent
657095d8bb
commit
2b97b8fb9e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue