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
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
#source ⇒ Object (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
#identifier ⇒ Object
151 152 153 |
# File 'lib/action_view/component/base.rb', line 151 def identifier "" end |
#type ⇒ Object
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 |