From e4ea283bcbf2e3cc03cd21c93e36159d852293fa Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Thu, 30 Apr 2009 12:43:21 -0700 Subject: [PATCH] [Haml] Convert Haml::Template docs to YARD. --- lib/haml/template.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/haml/template.rb b/lib/haml/template.rb index d12b38f4..9ceb4b74 100644 --- a/lib/haml/template.rb +++ b/lib/haml/template.rb @@ -1,10 +1,15 @@ require 'haml/engine' module Haml + # The class that keeps track of the global options for Haml within Rails. module Template extend self @options = {} + # The options hash for Haml when used within Rails. + # See [the Haml options documentation](../Haml.html#haml_options). + # + # @return [Hash] attr_accessor :options end end