diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2015-05-28 09:23:51 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2015-05-28 09:23:51 -0300 |
commit | 172e452e0a0147701d08b85573fbabe22f2d9274 (patch) | |
tree | df1d43df102bb584ac8a10891cb546862516b403 /actionpack/lib/action_controller/metal/rendering.rb | |
parent | 207f8fc7debec1e9173f797e5208527e97235af3 (diff) | |
parent | 44781b6e9790d90b4f8b9a41d2b2c114b1a582ee (diff) | |
download | rails-172e452e0a0147701d08b85573fbabe22f2d9274.tar.gz rails-172e452e0a0147701d08b85573fbabe22f2d9274.tar.bz2 rails-172e452e0a0147701d08b85573fbabe22f2d9274.zip |
Merge pull request #20336 from vngrs/deprecate_nothing_option_for_render_method
Deprecate `:nothing` option for render method
Diffstat (limited to 'actionpack/lib/action_controller/metal/rendering.rb')
-rw-r--r-- | actionpack/lib/action_controller/metal/rendering.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/metal/rendering.rb b/actionpack/lib/action_controller/metal/rendering.rb index 2d15c39d88..b9ae8dd5ea 100644 --- a/actionpack/lib/action_controller/metal/rendering.rb +++ b/actionpack/lib/action_controller/metal/rendering.rb @@ -79,6 +79,7 @@ module ActionController end if options.delete(:nothing) + ActiveSupport::Deprecation.warn("`:nothing` option is deprecated and will be removed in Rails 5.1. Use `head` method to respond with empty response body.") options[:body] = nil end |