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.
Photo by Marc-Olivier Jodoin on Unsplash
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?.
obj = Story.new
obj.methods
obj.instance_variables
SomeModule.constants
Story.define_method(:clap) do |count|
puts "Successfully clapped #{count} times"
end
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.
obj = Story.new method = obj.method(:clap) method.source_location # returns path to file with the method clap
When debugging, source_location can be invaluable for tracking down the origin of methods. It helps you quickly identify where a particular method is defined (if you’re not using an IDE like RubyMine), aiding in identifying issues and optimizing code.