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.



147
148
149
# File 'lib/action_view/component/base.rb', line 147

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

Instance Attribute Details

#sourceObject (readonly)

Returns the value of attribute source.



145
146
147
# File 'lib/action_view/component/base.rb', line 145

def source
  @source
end

Instance Method Details

#identifierObject



151
152
153
# File 'lib/action_view/component/base.rb', line 151

def identifier
  ""
end

#typeObject

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



156
157
158
# File 'lib/action_view/component/base.rb', line 156

def type
  "text/html"
end