Sha256: 04f7e0b4fec0e1d46dab6f2af58344eabe3e56bc792071439eee2d5208713bc0

Contents?: true

Size: 357 Bytes

Versions: 1

Compression:

Stored size: 357 Bytes

Contents

module Axel
  module ServiceResource
    module Inspects
      extend ActiveSupport::Concern

      def inspect
        Inspector.new(self, [:request_uri], [:attributes, :metadata, :remote_errors]).inspect
      end

      module ClassMethods
        def inspect
          Inspector.new(self, [:request_uri]).inspect
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
axel-0.0.1 app/models/axel/service_resource/inspects.rb