私は宝石を使用していjsonapi-resources
0.10.5
ます。
これは私のリソースです:
class ProjectResource < JSONAPI::Resource
attributes :name
end
これが私のコントローラーです:
class V2::ProjectController < V2::BaseController
def index
project = Project.find(1)
JSONAPI::ResourceSerializer.new(ProjectResource).serialize_to_hash(ProjectResource.new(project, nil), nil)
end
end
そして、私はこのエラーを受け取ります:
V2::ProjectTypesController#index の NoMethodError #JSONAPI::ResourceSerializer:0x00007ffabcc336b0 の未定義メソッド `serialize_to_hash'
私はちょうどドキュメントに従っています:
https://jsonapi-resources.com/v0.10/guide/serializer.html
何が間違っているのですか?