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



64
65
66
67
68
# File 'lib/ibex/runtime/embedded_source.rb', line 64

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