Methods
Public Instance methods
require_library( name )

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.

    # 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