lib/trocla/formats.rb in trocla-0.2.0 vs lib/trocla/formats.rb in trocla-0.2.1
- old
+ new
@@ -3,9 +3,12 @@
class Base
attr_reader :trocla
def initialize(trocla)
@trocla = trocla
end
+ def render(output,render_options={})
+ output
+ end
end
class << self
def [](format)
formats[format.downcase]