7 8 9 10 11 12 13 14 15
# File 'lib/batchrenderer.rb', line 7 def render out = {components:"",style:""} file_iterator do |file| component = SFC.new file out[:components] += component.render_component out[:style] += component.render_style end out end