Class: FSR::App::ExecuteApp

Inherits:
Application show all
Defined in:
lib/fsr/app/execute_app.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Application

#raw, #sendmsg, #to_s

Constructor Details

#initialize(app, *args) ⇒ ExecuteApp

Returns a new instance of ExecuteApp.



7
8
9
10
# File 'lib/fsr/app/execute_app.rb', line 7

def initialize(app, *args)
  @app_name = app
  @arguments = args
end

Instance Attribute Details

#app_nameObject (readonly)

Returns the value of attribute app_name.



6
7
8
# File 'lib/fsr/app/execute_app.rb', line 6

def app_name
  @app_name
end

#argumentsObject (readonly)

Returns the value of attribute arguments.



6
7
8
# File 'lib/fsr/app/execute_app.rb', line 6

def arguments
  @arguments
end