Class: MVCLI::Middleware::ExitStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/mvcli/middleware/exit_status.rb

Instance Method Summary collapse

Instance Method Details

#call(command) ⇒ Object



5
6
7
8
9
10
# File 'lib/mvcli/middleware/exit_status.rb', line 5

def call(command)
  result = yield command
  result.is_a?(Integer) ? result : 0
rescue Exception => e
  return EX_SOFTWARE
end