module ObjectInspector

ObjectInspector is the base namespace for all modules/classes related to the object_inspector gem.

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/object_inspector.rb, line 6
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/object_inspector.rb, line 10
def self.configure
  yield(configuration)
end
reset_configuration() click to toggle source
# File lib/object_inspector.rb, line 14
def self.reset_configuration
  @configuration = Configuration.new
end