bruz/bookshelf-delivery-example

View on GitHub
apps/api/representers/book.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'roar/decorator'
require 'roar/json'

module Api::Representers
  class Book < Roar::Decorator
    include Roar::JSON

    property :id
    property :title
    property :author
  end
end