lib/vedeu/main_loop.rb in vedeu-0.4.44 vs lib/vedeu/main_loop.rb in vedeu-0.4.45
- old
+ new
@@ -36,17 +36,19 @@
# @return [void]
def stop!
@loop = false
end
+ # :nocov:
# Check the application has started and we wish to continue running.
#
# @raise [VedeuInterrupt] When we wish to terminate the running
# application.
# @return [void]
def safe_exit_point!
fail VedeuInterrupt if @started && !@loop
end
+ # :nocov:
end
end # MainLoop