gitextract_curekkew/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── docs/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── json_serialization.md │ └── performance_methodology.md ├── jsonapi-serializer.gemspec ├── lib/ │ ├── extensions/ │ │ └── has_one.rb │ ├── fast_jsonapi/ │ │ ├── attribute.rb │ │ ├── helpers.rb │ │ ├── instrumentation/ │ │ │ └── skylight.rb │ │ ├── instrumentation.rb │ │ ├── link.rb │ │ ├── object_serializer.rb │ │ ├── railtie.rb │ │ ├── relationship.rb │ │ ├── scalar.rb │ │ ├── serialization_core.rb │ │ └── version.rb │ ├── fast_jsonapi.rb │ ├── generators/ │ │ └── serializer/ │ │ ├── USAGE │ │ ├── serializer_generator.rb │ │ └── templates/ │ │ └── serializer.rb.tt │ └── jsonapi/ │ ├── serializer/ │ │ ├── errors.rb │ │ ├── instrumentation.rb │ │ └── version.rb │ └── serializer.rb └── spec/ ├── fixtures/ │ ├── _user.rb │ ├── actor.rb │ └── movie.rb ├── integration/ │ ├── attributes_fields_spec.rb │ ├── caching_spec.rb │ ├── errors_spec.rb │ ├── instrumentation_spec.rb │ ├── key_transform_spec.rb │ ├── links_spec.rb │ ├── meta_spec.rb │ └── relationships_spec.rb └── spec_helper.rb