module Anyolite::Preloader::AtCompiletime
Defined in:
Preloader.crMacro Summary
-
load_bytecode_array_from_file(filename)
Caches the Ruby script in filename directly as bytecode.
-
load_bytecode_file(filename)
Caches the bytecode from filename, so it is automatically included into the final application.
-
transform_script_to_bytecode(filename, target_filename)
Converts the Ruby script in filename to bytecode, which is then stored in target_filename.
-
transform_script_to_bytecode_string(filename)
Converts the Ruby script in filename to bytecode.
Macro Detail
macro load_bytecode_array_from_file(filename)
#
Caches the Ruby script in filename directly as bytecode.
macro load_bytecode_file(filename)
#
Caches the bytecode from filename, so it is automatically included into the final application.
macro transform_script_to_bytecode(filename, target_filename)
#
Converts the Ruby script in filename to bytecode, which is then stored in target_filename.
macro transform_script_to_bytecode_string(filename)
#
Converts the Ruby script in filename to bytecode.