1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Haml] Convert Haml::Template docs to YARD.

This commit is contained in:
Nathan Weizenbaum 2009-04-30 12:43:21 -07:00
parent 63f0055be0
commit e4ea283bcb

View file

@ -1,10 +1,15 @@
require 'haml/engine' require 'haml/engine'
module Haml module Haml
# The class that keeps track of the global options for Haml within Rails.
module Template module Template
extend self extend self
@options = {} @options = {}
# The options hash for Haml when used within Rails.
# See [the Haml options documentation](../Haml.html#haml_options).
#
# @return [Hash<Symbol, Object>]
attr_accessor :options attr_accessor :options
end end
end end