No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
Adapter from Active Model Serializers, to work in Sinatra from a more practical way with models
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Codeship Status for SauloSilva/sinatra-active-model-serializers

Coverage Status

Code Climate

Sinatra::ActiveModelSerializers

Gem Version

This gem has the function of adapt the Active Model Serializers to work in Sinatra from a more practical way with models. If do you use everything at the default, just require sinatra_active_model_serializers for serializers work correctly the a json response.

Requirements

Ruby 1.9.2 or greater, Sinatra 1.4.5 or greater and Sinatra Contrib 1.4.2 or greater.

Installation

gem install sinatra-active-model-serializers

or with bundler

# Gemfile
source 'http://rubygems.org'

gem 'sinatra', '1.4.6'
gem 'sinatra-contrib', '1.4.6'
gem 'sinatra-active-model-serializers', '0.2.0'

Configure

It's very easy. Look at the example:

require 'rubygems'
require 'bundler'
Bundler.require :default

Dir['./app/models/**/*.rb'].each { |file| require file }

class App < Sinatra::Base
  get '/' do
    json Test.first
  end
end

Sets

active_model_serializers

This attribute is an object, all inserted configuration this object it will be passed on to Active Model Serializers, eg.

set :active_model_serializers, { root: false }

serializers_path

By default, path is app/serializers. If you need a different path you can set your path, eg.

set :serializers_path, './whatever_path/serializers'

or you can disable auto require

set :serializers_path, false

Response JSON

When you return a json, you can send a the second parameter. This the second parameter is an object. This object may contain new configurations to assign to the Active Model Serializers or to rewrite any already set by default, eg.

root

get '/' do
  json Resource.first, { root: false }
end

scope

get '/' do
  json Resource.first, { scope: self }
end

Specify a serializer

If you wish to use an another serializer than the default, you can explicitly pass it through the renderer

  1. For a resource:
json Resource.first, { serializer: ResourcePreviewSerializer }
  1. For an array resource:

Use the default ArraySerializer, which will use each_serializer to serialize each element.

json @resources, { each_serializer: ResourcePreviewSerializer }

License

MIT