module Interaktor::Callable
Public Class Methods
included(base)
click to toggle source
When the module is included in a class, add the relevant class methods to that class.
@param base [Class] the class which is including the module
# File lib/interaktor/callable.rb, line 10 def self.included(base) base.class_eval { extend ClassMethods } end