Sha256: 35e5a2e9dc0be0e094c91b5519858be383bb9a9f5966d92922c249ff7b6a3400

Contents?: true

Size: 916 Bytes

Versions: 158

Compression:

Stored size: 916 Bytes

Contents

module ActiveResource
  module Observing
    extend ActiveSupport::Concern
    include ActiveModel::Observing

    included do
      %w( create save update destroy ).each do |method|
        # def create_with_notifications(*args, &block)
        #   notify_observers(:before_create)
        #   if result = create_without_notifications(*args, &block)
        #     notify_observers(:after_create)
        #   end
        #   result
        # end
        # alias_method_chain(create, :notifications)
        class_eval(<<-EOS, __FILE__, __LINE__ + 1)
          def #{method}_with_notifications(*args, &block)
            notify_observers(:before_#{method})
            if result = #{method}_without_notifications(*args, &block)
              notify_observers(:after_#{method})
            end
            result
          end
        EOS
        alias_method_chain(method, :notifications)
      end
    end
  end
end

Version data entries

158 entries across 132 versions & 11 rubygems

Version Path
activeresource-3.2.9 lib/active_resource/observing.rb
activeresource-3.2.9.rc3 lib/active_resource/observing.rb
activeresource-3.2.9.rc2 lib/active_resource/observing.rb
activeresource-3.2.9.rc1 lib/active_resource/observing.rb
challah-0.8.1 vendor/bundle/gems/activeresource-3.2.8/lib/active_resource/observing.rb
challah-rolls-0.1.0 vendor/bundle/gems/activeresource-3.2.8/lib/active_resource/observing.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-rolls-0.1.0 vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-0.8.0.pre vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-0.7.1 vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-0.7.0 vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-0.7.0.pre2 vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
activeresource-3.2.8 lib/active_resource/observing.rb
activeresource-3.1.8 lib/active_resource/observing.rb
activeresource-3.2.8.rc2 lib/active_resource/observing.rb
challah-0.7.0.pre vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
activeresource-3.2.8.rc1 lib/active_resource/observing.rb
activeresource-3.2.7 lib/active_resource/observing.rb
activeresource-3.1.7 lib/active_resource/observing.rb
activeresource-3.2.7.rc1 lib/active_resource/observing.rb