Class: Aruba::CommandMonitor::DefaultLastCommandStopped
- Inherits:
-
Object
- Object
- Aruba::CommandMonitor::DefaultLastCommandStopped
show all
- Defined in:
- lib/aruba/platforms/command_monitor.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing ⇒ Object
22
23
24
|
# File 'lib/aruba/platforms/command_monitor.rb', line 22
def method_missing(*)
raise NoCommandHasBeenStoppedError, "No last command stopped available"
end
|
Instance Method Details
#empty? ⇒ Boolean
18
19
20
|
# File 'lib/aruba/platforms/command_monitor.rb', line 18
def empty?
true
end
|
#respond_to_missing? ⇒ Boolean
26
27
28
|
# File 'lib/aruba/platforms/command_monitor.rb', line 26
def respond_to_missing?(*)
true
end
|