diff options
author | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-12 17:45:06 +0200 |
---|---|---|
committer | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-25 11:40:10 +0200 |
commit | 34a2e486d6ae9c72ea139d47cf32e023a17c0903 (patch) | |
tree | c92a49b4004ab3689c5fa1642253c62ea7aa44dc /actionpack/lib | |
parent | a2ca04bb3ac178bbe1503ac65dc88f5f3f8cb37f (diff) | |
download | rails-34a2e486d6ae9c72ea139d47cf32e023a17c0903.tar.gz rails-34a2e486d6ae9c72ea139d47cf32e023a17c0903.tar.bz2 rails-34a2e486d6ae9c72ea139d47cf32e023a17c0903.zip |
Describe BasicRendering shortly
[ci skip]
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/rendering.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/metal/rendering.rb b/actionpack/lib/action_controller/metal/rendering.rb index d965cb8c16..d0095caa75 100644 --- a/actionpack/lib/action_controller/metal/rendering.rb +++ b/actionpack/lib/action_controller/metal/rendering.rb @@ -1,4 +1,8 @@ module ActionController + # Basic rendering implements the most minimal rendering layer. + # It only supports rendering :text and :nothing. Passing any other option will + # result in `UnsupportedOperationError` exception. For more functionality like + # different formats, layouts etc. you should use `ActionView` gem. module BasicRendering extend ActiveSupport::Concern |