Module Mack::Environment
In: lib/mack/boot/environment.rb

Allows hook methods for the loading of the environment.

Methods

load  

Included Modules

Extlib::Hook

Public Class methods

Requires the Mack application classes only once. This is the method you want to add ‘hooks’ on for application load setup.

[Source]

    # File lib/mack/boot/environment.rb, line 13
13:       def self.load
14:         ivar_cache do
15:           require File.join_from_here('..', '..', "mack_app")
16:         end
17:       end

[Validate]