aglushkov/serega

View on GitHub
lib/serega/helpers/serializer_class_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

class Serega
  #
  # Helpers
  #
  module SeregaHelpers
    #
    # Stores link to current serializer class
    #
    module SerializerClassHelper
      # Shows serializer class current class is namespaced under
      # @return [Class<Serega>] Serializer class that current class is namespaced under.
      attr_accessor :serializer_class
    end
  end
end