Method: RUIC#uia

Defined in:
lib/ruic.rb

#uia(path) ⇒ UIC::Application

Load an application, making it available as app, app2, etc.

Parameters:

  • path (String)

    Path to the *.uia application file.

Returns:



104
105
106
107
108
# File 'lib/ruic.rb', line 104

def uia(path)
  meta = UIC. 
  name = @apps.empty? ? :app : :"app#{@apps.length+1}"
  @apps[name] = UIC.Application(meta,path)
end