module Pakyow::Support::Inspectable::ClassMethods
Public Instance Methods
inspectable(*inspectables)
click to toggle source
Sets the instance vars and public methods that should be part of the inspection.
@param inspectables [Array<Symbol>] The list of instance variables and public methods.
# File lib/pakyow/support/inspectable.rb, line 39 def inspectable(*inspectables) @__inspectables = inspectables.map(&:to_sym) end