Class: ActionView::Component::Base::DummyTemplate
- Inherits:
-
Object
- Object
- ActionView::Component::Base::DummyTemplate
- Defined in:
- lib/action_view/component/base.rb
Instance Attribute Summary collapse
-
#source ⇒ Object
readonly
Returns the value of attribute source.
Instance Method Summary collapse
- #identifier ⇒ Object
-
#initialize(source = nil) ⇒ DummyTemplate
constructor
A new instance of DummyTemplate.
-
#type ⇒ Object
we’ll eventually want to update this to support other types.
Constructor Details
#initialize(source = nil) ⇒ DummyTemplate
139 140 141 |
# File 'lib/action_view/component/base.rb', line 139 def initialize(source = nil) @source = source end |
Instance Attribute Details
#source ⇒ Object (readonly)
Returns the value of attribute source.
137 138 139 |
# File 'lib/action_view/component/base.rb', line 137 def source @source end |
Instance Method Details
#identifier ⇒ Object
143 144 145 |
# File 'lib/action_view/component/base.rb', line 143 def identifier "" end |
#type ⇒ Object
we’ll eventually want to update this to support other types
148 149 150 |
# File 'lib/action_view/component/base.rb', line 148 def type "text/html" end |