Method: RUIC#method_missing

Defined in:
lib/ruic.rb

#method_missing(name, *a) ⇒ UIC::Application

Used to resolve bare app and app2 calls to a loaded Application.

Returns:



112
113
114
# File 'lib/ruic.rb', line 112

def method_missing(name,*a)
	@apps[name] || (name=~/^app\d*/ ? "(no #{name} loaded)".extend(SelfInspecting) : super)
end