Class: Alephant::Views::Base

Inherits:
Mustache
  • Object
show all
Defined in:
lib/alephant/views/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Base

Returns a new instance of Base.



7
8
9
# File 'lib/alephant/views/base.rb', line 7

def initialize(data)
  @data = data
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



5
6
7
# File 'lib/alephant/views/base.rb', line 5

def data
  @data
end

Class Method Details

.inherited(subclass) ⇒ Object



11
12
13
# File 'lib/alephant/views/base.rb', line 11

def self.inherited(subclass)
  ::Alephant::Views.register(subclass)
end