diff options
author | Lucas Mazza <luc4smazza@gmail.com> | 2011-12-21 17:31:53 -0200 |
---|---|---|
committer | Lucas Mazza <luc4smazza@gmail.com> | 2011-12-21 17:34:21 -0200 |
commit | 9fbaf9f0777485b32ae12d0cc261695b9bb26eea (patch) | |
tree | b28b01af3b789b5d20658c019dc085d5dd301fad /actionpack/lib/action_view | |
parent | a03d26e1892d5b9363b1ea8b6f9ff2aa829d0f37 (diff) | |
download | rails-9fbaf9f0777485b32ae12d0cc261695b9bb26eea.tar.gz rails-9fbaf9f0777485b32ae12d0cc261695b9bb26eea.tar.bz2 rails-9fbaf9f0777485b32ae12d0cc261695b9bb26eea.zip |
raises an ArgumentError if no valid options are given to TemplateRenderer#determine_template
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/renderer/template_renderer.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/renderer/template_renderer.rb b/actionpack/lib/action_view/renderer/template_renderer.rb index 3e3a44b432..06148ccc98 100644 --- a/actionpack/lib/action_view/renderer/template_renderer.rb +++ b/actionpack/lib/action_view/renderer/template_renderer.rb @@ -25,6 +25,8 @@ module ActionView elsif options.key?(:template) options[:template].respond_to?(:render) ? options[:template] : find_template(options[:template], options[:prefixes], false, keys, @details) + else + raise ArgumentError, "You invoked render but did not give any of :partial, :template, :inline, :file or :text option." end end |