module Objection::Awoken::InstanceMethods

Public Instance Methods

awakeFromObjection() click to toggle source
# File lib/motion-objection/awoken.rb, line 9
def awakeFromObjection
  # self.send :awoke_from_objection if self.respond_to? :awoke_from_objection
  if self.class._incantations
    self.class._incantations.each do |proc|
      instance_eval &proc
    end
  end
end