Class: Yuzu::Renderers::Renderer

Inherits:
Register
  • Object
show all
Defined in:
lib/yuzu/renderers/base.rb

Constant Summary collapse

@@renderers =
{}

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRenderer

Returns a new instance of Renderer.



14
15
# File 'lib/yuzu/renderers/base.rb', line 14

def initialize
end

Class Method Details

.registryObject



7
8
9
# File 'lib/yuzu/renderers/base.rb', line 7

def self.registry
  :renderers
end

.renderersObject



10
11
12
# File 'lib/yuzu/renderers/base.rb', line 10

def self.renderers
  @@renderers
end

Instance Method Details

#render(website_file) ⇒ Object



17
18
19
# File 'lib/yuzu/renderers/base.rb', line 17

def render(website_file)
  ""
end