Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
kiwi-jsonapi / lib / kiwi / jsonapi / action.rb
Size: Mime:
# frozen_string_literal: true

module Kiwi
  module JSONAPI
    # JSONAPI action
    module Action
      def render(resources, options = {})
        renderer = ::JSONAPI::Serializable::Renderer.new

        renderer.render(resources,
                        options)
      end
    end
  end
end