Method: LWS.app_module

Defined in:
lib/lws.rb

.app_module(app_name) ⇒ Module

Returns the app module for the given app name.

Parameters:

  • app_name (String, Symbol)

    the app name

Returns:

  • (Module)

    the app module



144
145
146
# File 'lib/lws.rb', line 144

def self.app_module(app_name)
  @app_modules[app_name.to_sym]
end