Module: Ibex::Runtime::EmbeddedSource

Defined in:
lib/ibex/runtime/embedded_source.rb

Overview

Assembles the installed runtime into one dependency-free Ruby source.

Class Method Summary collapse

Class Method Details

.renderObject



62
63
64
65
66
# File 'lib/ibex/runtime/embedded_source.rb', line 62

def self.render
  paths = FILES.map { |relative_path| File.expand_path(relative_path, File.dirname(__FILE__)) }
  validate_manifest!(paths)
  paths.map { |path| source(path) }.join("\n")
end