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
active_mailer-0.0.3 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activeresource-3.2.12/lib/active_resource/observing.rb
activeresource-3.2.12 lib/active_resource/observing.rb
activeresource-3.1.11 lib/active_resource/observing.rb
challah-0.9.1.beta.3 vendor/bundle/gems/activeresource-3.2.11/lib/active_resource/observing.rb
devise_sociable-0.1.0 vendor/bundle/gems/activeresource-3.2.11/lib/active_resource/observing.rb
challah-0.9.1.beta vendor/bundle/gems/activeresource-3.2.11/lib/active_resource/observing.rb
activeresource-3.2.11 lib/active_resource/observing.rb
activeresource-3.1.10 lib/active_resource/observing.rb
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/activeresource-3.2.10/lib/active_resource/observing.rb
challah-0.9.0 vendor/bundle/gems/activeresource-3.2.9/lib/active_resource/observing.rb
activeresource-3.2.10 lib/active_resource/observing.rb
activeresource-3.1.9 lib/active_resource/observing.rb
challah-rolls-0.2.0 vendor/bundle/gems/activeresource-3.2.8/lib/active_resource/observing.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/activeresource-3.2.9/lib/active_resource/observing.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/activeresource-3.2.8/lib/active_resource/observing.rb
challah-rolls-0.2.0 vendor/bundle/gems/activeresource-3.2.7/lib/active_resource/observing.rb
challah-rolls-0.2.0 vendor/bundle/gems/activeresource-3.2.9/lib/active_resource/observing.rb
challah-0.8.3 vendor/bundle/gems/activeresource-3.2.8/lib/active_resource/observing.rb
challah-0.8.3 vendor/bundle/gems/activeresource-3.2.9/lib/active_resource/observing.rb