module TryingModels::ActsAsTryable
Public Class Methods
included(target)
click to toggle source
# File lib/trying_models/acts_as_tryable.rb, line 4 def self.included(target) # target mean the Model class name when you put `acts_as_tryable` in your Model # target.send :include, InstanceMethods target.send :extend, ClassMethods end