Methods
Public Instance methods
Require the library registered under the given name. A Kernel.require is done on the name, and then if a library has been registered under that name, its call method is invoked with the container as the parameter.
[ show source ]
# File lib/needle/extras/require-library.rb, line 16 16: def require_library( name ) 17: Kernel.require name 18: LIBRARIES[ name ].call( self ) if LIBRARIES[ name ] 19: end