module JSONAPI::Realizer

Constants

VERSION

Public Class Methods

configuration() { |configuration| ... } click to toggle source
# File lib/jsonapi/realizer.rb, line 29
def self.configuration
  if block_given?
    yield(@configuration)
  else
    @configuration
  end
end