Class: Rack::DevMark::Theme::Base
- Inherits:
-
Object
- Object
- Rack::DevMark::Theme::Base
- Defined in:
- lib/rack/dev-mark/theme/base.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(*args) ⇒ Base
constructor
A new instance of Base.
- #insert_into(html, env) ⇒ Object
Constructor Details
#initialize(*args) ⇒ Base
Returns a new instance of Base.
5 6 7 |
# File 'lib/rack/dev-mark/theme/base.rb', line 5 def initialize(*args) raise RuntimeError, 'Abstract class can not be instantiated' if self.class == Rack::DevMark::Theme::Base end |
Instance Method Details
#insert_into(html, env) ⇒ Object
9 10 11 |
# File 'lib/rack/dev-mark/theme/base.rb', line 9 def insert_into(html, env) end |