class AbcJsonapi::Configuration

Attributes

key_transform_method[RW]
pluralize_resources[RW]
transform_keys[RW]

Public Class Methods

new() click to toggle source
# File lib/abc_jsonapi.rb, line 17
def initialize
  @transform_keys ||= true
  @key_transform_method ||= 'camel' # snake or camel
  @pluralize_resources ||= false
end