diff options
author | Xavier Noria <fxn@hashref.com> | 2010-03-28 14:15:02 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-03-28 14:15:02 +0200 |
commit | 76f024ac8db82490a99c71d0d8951d677e3bc9bc (patch) | |
tree | 4fda85acd8a48e5a678c55cb894005fa1226ad54 /actionpack/lib/action_view/render | |
parent | 105f9b8154bbee88b45e0bb9de949206cbc1ba02 (diff) | |
download | rails-76f024ac8db82490a99c71d0d8951d677e3bc9bc.tar.gz rails-76f024ac8db82490a99c71d0d8951d677e3bc9bc.tar.bz2 rails-76f024ac8db82490a99c71d0d8951d677e3bc9bc.zip |
adds missing requires for Object#blank? and Object#present?
Diffstat (limited to 'actionpack/lib/action_view/render')
-rw-r--r-- | actionpack/lib/action_view/render/partials.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/render/partials.rb b/actionpack/lib/action_view/render/partials.rb index 17d16556b9..f04a89c1ac 100644 --- a/actionpack/lib/action_view/render/partials.rb +++ b/actionpack/lib/action_view/render/partials.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/object/blank' + module ActionView # There's also a convenience method for rendering sub templates within the current controller that depends on a # single object (we call this kind of sub templates for partials). It relies on the fact that partials should |