Sha256: aff546fef393c787ee85535846e629135323ddc6b3e5957f655fdb695f0cefd8

Contents?: true

Size: 559 Bytes

Versions: 66

Compression:

Stored size: 559 Bytes

Contents

module Cobrato
  module Resources
    module Hooks

      def notify(*hooked_methods)
        apply_hooks(hooked_methods.flatten)
      end

      private

      def apply_hooks(hooked_methods)
        hooked_methods.each do |method|
          alias_method "#{method}_without_notifier", method

          define_method method do |*args|
            result = send("#{method}_without_notifier", *args)
            publish("cobrato.#{base_klass.downcase}.#{method}", result, args.flatten)
            result
          end
        end
      end

    end
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
cobrato-client-0.10.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.9.1 lib/cobrato/resources/hooks.rb
cobrato-client-0.9.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.8.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.7.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.6.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.5.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.4.2 lib/cobrato/resources/hooks.rb
cobrato-client-0.4.1 lib/cobrato/resources/hooks.rb
cobrato-client-0.4.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.4.0.rc1 lib/cobrato/resources/hooks.rb
cobrato-client-0.3.0 lib/cobrato/resources/hooks.rb
cobrato-client-0.3.0.rc1 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.11 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.10 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.9 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.8 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.7 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.6 lib/cobrato/resources/hooks.rb
cobrato-client-0.2.5 lib/cobrato/resources/hooks.rb