aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-17 14:51:44 -0400
committerJosé Valim <jose.valim@gmail.com>2011-05-17 14:51:44 -0400
commit760dec17bea1cf10534d33d409e4d6e1ff62c6af (patch)
tree630dceb455cabc41ab277230e964e7796fd42c7d /actionpack/lib/action_controller/metal
parent1d71c93f99f25e13719e4a6697f7630996421ca4 (diff)
downloadrails-760dec17bea1cf10534d33d409e4d6e1ff62c6af.tar.gz
rails-760dec17bea1cf10534d33d409e4d6e1ff62c6af.tar.bz2
rails-760dec17bea1cf10534d33d409e4d6e1ff62c6af.zip
Use anonymous? that works on both Ruby 1.8 and 1.9.
Diffstat (limited to 'actionpack/lib/action_controller/metal')
-rw-r--r--actionpack/lib/action_controller/metal/params_wrapper.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/params_wrapper.rb b/actionpack/lib/action_controller/metal/params_wrapper.rb
index b7c37ce1c1..93241fc056 100644
--- a/actionpack/lib/action_controller/metal/params_wrapper.rb
+++ b/actionpack/lib/action_controller/metal/params_wrapper.rb
@@ -2,6 +2,7 @@ require 'active_support/core_ext/class/attribute'
require 'active_support/core_ext/hash/slice'
require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/array/wrap'
+require 'active_support/core_ext/module/anonymous'
require 'action_dispatch/http/mime_types'
module ActionController
@@ -140,7 +141,7 @@ module ActionController
# This method also does namespace lookup. Foo::Bar::UsersController will
# try to find Foo::Bar::User, Foo::User and finally User.
def _default_wrap_model #:nodoc:
- return nil if self.name.nil?
+ return nil if self.anonymous?
model_name = self.name.sub(/Controller$/, '').singularize
@@ -170,7 +171,7 @@ module ActionController
end
end
- unless options[:name] || self.name.nil?
+ unless options[:name] || self.anonymous?
model ||= _default_wrap_model
options[:name] = model ? model.to_s.demodulize.underscore :
controller_name.singularize