Class: Templater::Description

Inherits:
Object
  • Object
show all
Defined in:
lib/templater/description.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options = {}, &block) ⇒ Description

Returns a new instance of Description.



6
7
8
9
10
# File 'lib/templater/description.rb', line 6

def initialize(name, options={}, &block)
  @name = name
  @options = options
  @block = block
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



4
5
6
# File 'lib/templater/description.rb', line 4

def block
  @block
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/templater/description.rb', line 4

def name
  @name
end

#optionsObject

Returns the value of attribute options.



4
5
6
# File 'lib/templater/description.rb', line 4

def options
  @options
end