Method: JSS::Computer#respond_to_missing?
- Defined in:
- lib/jss/api_object/computer.rb
#respond_to_missing?(method) ⇒ Boolean
Companion to method_missing, allows for easier debugging in backtraces that involve missing methods.
868 869 870 |
# File 'lib/jss/api_object/computer.rb', line 868 def respond_to_missing?(method, *) @hardware.key?(method) || super end |