dao-rb/dao-gateway

View on GitHub
lib/dao/gateway/processor.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Dao
  module Gateway
    class Processor
      def prepare(associations, raw_record)
        @associations = associations
        @raw_record = raw_record
        prepared
      end

      def process(attributes)
        attributes
      end

      def need_to_continue_lookup?
        true
      end

      protected

      def prepared

      end
    end
  end
end