class TrustyCms::ExtensionPath

def eager_load_paths


Call the class method ExtensionPath.eager_load_paths to get a list for all enabled extensions.

controllers are loaded before running cucumber features, and there may be a better way to achieve that.
includes all the controller, model and helper paths. The main purpose here is to ensure that extension
Returns a list of extension subdirectories that should be marked for eager loading. At the moment that
def eager_load_paths
  [controller_paths, model_paths, helper_paths].flatten.compact
end