Method: Rho::RHO#init_app

Defined in:
lib/framework/rho/rho.rb,
lib/framework/autocomplete/Rho.rb

#init_appObject



125
126
127
128
129
130
131
132
133
# File 'lib/framework/rho/rho.rb', line 125

def init_app
  puts "init_app"
  begin
    get_app(APPNAME)
  rescue Exception => e
    trace_msg = e.backtrace.join("\n")
    puts 'Application initialize failed: ' + e.inspect + ";Trace: #{trace_msg}"
  end
end