public
Description: resources_controller rails plugin: rc makes RESTful controllers fun
Homepage: http://plugins.ardes.com/doc/resources_controller
Clone URL: git://github.com/ianwhite/resources_controller.git
Click here to lend your support to: resources_controller and make a donation at www.pledgie.com !
explicitly hide_action respond_to? (Change in edge rails requires this)
ianwhite (author)
Wed Sep 03 05:38:43 -0700 2008
commit  c6f6426da4e721e5b56803d834b8ff55199e93f5
tree    377273ca4e3074e80e272d0a9a60513bcf3e10db
parent  f69379470e88cf9dcd8b3b457e765f30687b064a
...
38
39
40
41
 
42
43
44
...
38
39
40
 
41
42
43
44
0
@@ -38,7 +38,7 @@ module Ardes#:nodoc:
0
           alias_method_chain :respond_to?, :named_route_helper
0
         end
0
         base.hide_action *instance_methods
0
-        base.hide_action :method_missing_without_named_route_helper, :respond_to_without_named_route_helper?
0
+        base.hide_action :method_missing_without_named_route_helper, :respond_to_without_named_route_helper?, :respond_to?
0
       end
0
 
0
       def method_missing_with_named_route_helper(method, *args, &block)

Comments