From 06853cb0a9ff77c67ec30e70b4007c4f9d11838b Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sun, 25 Jul 2010 23:42:05 +0200 Subject: AS guide: Object#returning is gone --- .../guides/source/active_support_core_extensions.textile | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'railties/guides') diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile index e53c7715bb..d14a531abe 100644 --- a/railties/guides/source/active_support_core_extensions.textile +++ b/railties/guides/source/active_support_core_extensions.textile @@ -157,21 +157,6 @@ WARNING. Using +duplicable?+ is discouraged because it depends on a hard-coded l NOTE: Defined in +active_support/core_ext/object/duplicable.rb+. -h4. +returning+ - -The method +returning+ yields its argument to a block and returns it. You typically use it with a mutable object that gets modified in the block: - - -def html_options_for_form(url_for_options, options, *parameters_for_url) - returning options.stringify_keys do |html_options| - html_options["enctype"] = "multipart/form-data" if html_options.delete("multipart") - html_options["action"] = url_for(url_for_options, *parameters_for_url) - end -end - - -NOTE: Defined in +active_support/core_ext/object/returning.rb+. - h4. +try+ Sometimes you want to call a method provided the receiver object is not +nil+, which is something you usually check first. -- cgit v1.2.3