diff options
author | Rizwan Reza <rizwanreza@gmail.com> | 2010-06-21 00:56:31 +0430 |
---|---|---|
committer | Rizwan Reza <rizwanreza@gmail.com> | 2010-06-21 00:56:31 +0430 |
commit | ab7830d66cf69316142a6cda847756faa73f8cd5 (patch) | |
tree | 3a42397d85190ea397496f5924aaff630ffee9e6 /actionpack/lib/action_view/template | |
parent | 96b927d9db6d5627d39a5e3c51736c10f833f88f (diff) | |
download | rails-ab7830d66cf69316142a6cda847756faa73f8cd5.tar.gz rails-ab7830d66cf69316142a6cda847756faa73f8cd5.tar.bz2 rails-ab7830d66cf69316142a6cda847756faa73f8cd5.zip |
Final touches and fixes.
Diffstat (limited to 'actionpack/lib/action_view/template')
-rw-r--r-- | actionpack/lib/action_view/template/error.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_view/template/handlers.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_view/template/resolver.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_view/template/text.rb | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/error.rb b/actionpack/lib/action_view/template/error.rb index e50de7e5af..b1839b65e5 100644 --- a/actionpack/lib/action_view/template/error.rb +++ b/actionpack/lib/action_view/template/error.rb @@ -1,6 +1,7 @@ require "active_support/core_ext/enumerable" module ActionView + # = Action View Errors class ActionViewError < StandardError #:nodoc: end diff --git a/actionpack/lib/action_view/template/handlers.rb b/actionpack/lib/action_view/template/handlers.rb index 6228d7ac39..84d6474dd1 100644 --- a/actionpack/lib/action_view/template/handlers.rb +++ b/actionpack/lib/action_view/template/handlers.rb @@ -1,4 +1,5 @@ module ActionView #:nodoc: + # = Action View Template Handlers class Template module Handlers #:nodoc: autoload :ERB, 'action_view/template/handlers/erb' diff --git a/actionpack/lib/action_view/template/resolver.rb b/actionpack/lib/action_view/template/resolver.rb index ef44925951..2cf7e955ab 100644 --- a/actionpack/lib/action_view/template/resolver.rb +++ b/actionpack/lib/action_view/template/resolver.rb @@ -3,6 +3,7 @@ require "active_support/core_ext/class" require "action_view/template" module ActionView + # = Action View Resolver class Resolver def initialize @cached = Hash.new { |h1,k1| h1[k1] = diff --git a/actionpack/lib/action_view/template/text.rb b/actionpack/lib/action_view/template/text.rb index 269340514c..51be831dfb 100644 --- a/actionpack/lib/action_view/template/text.rb +++ b/actionpack/lib/action_view/template/text.rb @@ -1,4 +1,5 @@ module ActionView #:nodoc: + # = Action View Text Template class Template class Text < String #:nodoc: attr_accessor :mime_type |