You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it stands right now, the handle method for OuterApp in the following example never has a chance to execute:
require'belafonte'classInnerApp < Belafonte::Apptitle"inner"defhandlestdout.puts"This is the inner app"endendclassOuterApp < Belafonte::Apptitle"outer"mountInnerAppdefhandlestdout.puts"This is the outer app"endendexitOuterApp.new(ARGV).execute!
The text was updated successfully, but these errors were encountered:
I'm beginning to wonder if the above scenario is realistic. Should OuterApp#handle ever get called, or is it reasonable to expect that the top-level of a command suite is just a wrapper?
As it stands right now, the
handle
method forOuterApp
in the following example never has a chance to execute:The text was updated successfully, but these errors were encountered: