class GrapeSwagger::FastJsonapi::Parser

Public Class Methods

deprecated?() click to toggle source
# File lib/grape_jsonapi/deprecated/parser.rb, line 16
def self.deprecated?
  true
end
new(model, endpoint) click to toggle source
Calls superclass method GrapeSwagger::Jsonapi::Parser::new
# File lib/grape_jsonapi/deprecated/parser.rb, line 6
def initialize(model, endpoint)
  warn "
    WARNING: Grape::FastJsonapi::Parser is deprecated
    and will be removed on version 1.1
    Use Grape::Jsonapi::Parser instead
  "

  super(model, endpoint)
end