Method: Jamf::Computer#respond_to_missing?

Defined in:
lib/jamf/api/classic/api_objects/computer.rb

#respond_to_missing?(method) ⇒ Boolean

Companion to method_missing, allows for easier debugging in backtraces that involve missing methods.

Returns:

  • (Boolean)


1003
1004
1005
# File 'lib/jamf/api/classic/api_objects/computer.rb', line 1003

def respond_to_missing?(method, *)
  @hardware.key?(method) || super
end