method

notify_observers

notify_observers(*arg)
public

No documentation available.

# File activemodel/lib/active_model/observing.rb, line 50
      def notify_observers(*arg)
        if defined? @observer_instances
          for observer in @observer_instances
            observer.update(*arg)
          end
        end
      end