aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-03-19 11:49:53 -0700
committerwycats <wycats@gmail.com>2010-03-19 11:50:03 -0700
commit9f92563892007c7f42a51ec7926352d50d596579 (patch)
tree7b35d950f54d8d7599f3d6f2b8ce6b9619c48a31 /actionpack/lib/action_view/base.rb
parent7f53dca1a13e21ec4400a765f637b73c0f194979 (diff)
downloadrails-9f92563892007c7f42a51ec7926352d50d596579.tar.gz
rails-9f92563892007c7f42a51ec7926352d50d596579.tar.bz2
rails-9f92563892007c7f42a51ec7926352d50d596579.zip
Eliminate an error from an implicit dependency on AV::Base
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 66af693cde..9eec8ecce8 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -7,27 +7,6 @@ module ActionView #:nodoc:
class NonConcattingString < ActiveSupport::SafeBuffer
end
- class ActionViewError < StandardError #:nodoc:
- end
-
- class MissingTemplate < ActionViewError #:nodoc:
- attr_reader :path
-
- def initialize(paths, path, details, partial)
- @path = path
- display_paths = paths.compact.map{ |p| p.to_s.inspect }.join(", ")
- template_type = if partial
- "partial"
- elsif path =~ /layouts/i
- 'layout'
- else
- 'template'
- end
-
- super("Missing #{template_type} #{path} with #{details.inspect} in view paths #{display_paths}")
- end
- end
-
# Action View templates can be written in three ways. If the template file has a <tt>.erb</tt> (or <tt>.rhtml</tt>) extension then it uses a mixture of ERb
# (included in Ruby) and HTML. If the template file has a <tt>.builder</tt> (or <tt>.rxml</tt>) extension then Jim Weirich's Builder::XmlMarkup library is used.
# If the template file has a <tt>.rjs</tt> extension then it will use ActionView::Helpers::PrototypeHelper::JavaScriptGenerator.