Rails Reflects for you A Brief on use of Reflection in Ruby on Rails codebase

Reflection is the ability of a program to introspect itself, providing insight into its own structure and behavior at runtime. It enables inquiring about classes, methods, and attributes and also supports dynamic code manipulation.

There are methods in Ruby classes and objects that allow inspection of specific areas of code. In Ruby on Rails, reflection is primarily achieved through methods provided by the ActiveRecord::Reflection module.

Below are some of the methods provided in Ruby to explore more about the objects in runtime.

class Story
end

obj = Story.new
obj.class # Story
obj.is_a? Story # true

class method tells you the class of any object in Ruby. is_a? method lets us know if the given object is the instance of the class in the argument. It returns true for any subclass of the Class passed. If you want to check the direct instance alone, use instance_of?.

methods return an array of symbols representing the available methods for an object or class and instance_variables returns an array of instance variable names for an object. Moreover, with Ruby’s metaprogramming, you can create methods on the fly with define_method.

Among the arsenal of reflective tools, the source_location method shines as a spotlight. It is part of the Method class and reveals the file path and line number where a method is defined.

Click Here :-