Class: ActionView::Component::Base::DummyTemplate

Inherits:
Object
  • Object
show all
Defined in:
lib/action_view/component/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source = nil) ⇒ DummyTemplate

Returns a new instance of DummyTemplate.



221
222
223
# File 'lib/action_view/component/base.rb', line 221

def initialize(source = nil)
  @source = source
end

Instance Attribute Details

#sourceObject (readonly)

Returns the value of attribute source.



219
220
221
# File 'lib/action_view/component/base.rb', line 219

def source
  @source
end

Instance Method Details

#identifierObject



225
226
227
# File 'lib/action_view/component/base.rb', line 225

def identifier
  ""
end

#typeObject

we’ll eventually want to update this to support other types



230
231
232
# File 'lib/action_view/component/base.rb', line 230

def type
  "text/html"
end