# File lib/active_support/core_ext/object/returning.rb, line 38 def returning(value) ActiveSupport::Deprecation.warn('Object#returning has been deprecated in favor of Object#tap.', caller) yield(value) value end