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.
165 166 167 |
# File 'lib/action_view/component/base.rb', line 165 def initialize(source = nil) @source = source end |
Instance Attribute Details
#source ⇒ Object (readonly)
Returns the value of attribute source.
163 164 165 |
# File 'lib/action_view/component/base.rb', line 163 def source @source end |
Instance Method Details
#identifier ⇒ Object
169 170 171 |
# File 'lib/action_view/component/base.rb', line 169 def identifier "" end |
#type ⇒ Object
we’ll eventually want to update this to support other types
174 175 176 |
# File 'lib/action_view/component/base.rb', line 174 def type "text/html" end |