module Grape::Formatter::FastJsonapi

Public Class Methods

call(object, env) click to toggle source
Calls superclass method Grape::Formatter::Jsonapi::call
# File lib/grape_jsonapi/deprecated/formatter.rb, line 9
def call(object, env)
  warn "
    WARNING: Grape::Formatter::FastJsonapi is deprecated
    and will be removed on version 1.1
    Use Grape::Formatter::Jsonapi instead
  "

  super(object, env)
end
deprecated?() click to toggle source
# File lib/grape_jsonapi/deprecated/formatter.rb, line 19
def deprecated?
  true
end