In Files
Information
Kernel
Public Class Methods
Public Instance Methods
__LIBRARY__()
click to toggle source
In which library is the current file participating?
# File lib/roll/kernel.rb, line 7 7: def __LIBRARY__ 8: Roll::Library.load_stack.last 9: end
acquire(file, opts={})
click to toggle source
Acquire script.
# File lib/roll/kernel.rb, line 36
36: def acquire(file, opts={})
37: Roll::Library.acquire(file, opts)
38: end
load(file, wrap=false)
click to toggle source
Load script.
# File lib/roll/kernel.rb, line 31
31: def load(file, wrap=false)
32: Roll::Library.load(file, wrap)
33: end
Also aliased as: original_load
require(file)
click to toggle source
Require script.
# File lib/roll/kernel.rb, line 26
26: def require(file)
27: Roll::Library.require(file)
28: end
Also aliased as: original_require
Disabled; run with --debug to generate this.