Class: Dry::Core::BasicObject

Inherits:
BasicObject
Defined in:
lib/dry/core/basic_object.rb

Overview

BasicObject

Since:

  • 0.8.0

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.const_missing(name) ⇒ Object, Module

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Lookups constants at the top-level namespace, if they are missing in the current context.

Parameters:

  • name (Symbol)

    the constant name

Returns:

  • (Object, Module)

    the constant

Raises:

  • (NameError)

    if the constant cannot be found

See Also:

Since:

  • 0.8.0



23
24
25
# File 'lib/dry/core/basic_object.rb', line 23

def self.const_missing(name)
  ::Object.const_get(name)
end

Instance Method Details

#classObject

Returns the class for debugging purposes.



32
33
34
# File 'lib/dry/core/basic_object.rb', line 32

def class
  (class << self; self; end).superclass
end

#instance_of?Object

Since:

  • 0.8.0



62
# File 'lib/dry/core/basic_object.rb', line 62

define_method :instance_of?, ::Object.instance_method(:instance_of?)

#is_a?Object

Since:

  • 0.8.0



77
# File 'lib/dry/core/basic_object.rb', line 77

define_method :is_a?, ::Object.instance_method(:is_a?)

#kind_of?Object

Since:

  • 0.8.0



92
# File 'lib/dry/core/basic_object.rb', line 92

define_method :kind_of?, ::Object.instance_method(:kind_of?)

#object_idFixnum

Alias for __id__

Returns:

  • (Fixnum)

    the object id

See Also:

Since:

  • 0.8.0



101
102
103
# File 'lib/dry/core/basic_object.rb', line 101

def object_id
  __id__
end

#pretty_print(printer) ⇒ String

Interface for pp

Parameters:

  • printer (PP)

    the Pretty Printable printer

Returns:

  • (String)

    the pretty-printable inspection of the object

See Also:

Since:

  • 0.8.0



113
114
115
# File 'lib/dry/core/basic_object.rb', line 113

def pretty_print(printer)
  printer.text(inspect)
end

#respond_to?(method_name, include_all = false) ⇒ TrueClass, FalseClass

Returns true if responds to the given method.

Returns:

  • (TrueClass, FalseClass)

    the result of the check

See Also:

Since:

  • 0.8.0



124
125
126
# File 'lib/dry/core/basic_object.rb', line 124

def respond_to?(method_name, include_all = false) # rubocop:disable Style/OptionalBooleanParameter
  respond_to_missing?(method_name, include_all)
end