module CustomInspectMixin

Public Instance Methods

inspect() click to toggle source
# File lib/manageiq/api/client/mixins/custom_inspect_mixin.rb, line 4
def inspect
  pretty_print_inspect
end
pretty_print(q) click to toggle source
# File lib/manageiq/api/client/mixins/custom_inspect_mixin.rb, line 8
def pretty_print(q)
  q.pp_object(self)
end
pretty_print_instance_variables() click to toggle source
Calls superclass method
# File lib/manageiq/api/client/mixins/custom_inspect_mixin.rb, line 12
def pretty_print_instance_variables
  super - self.class::CUSTOM_INSPECT_EXCLUSIONS
end