CSC/ECE 517 Fall 2014/ch1a 24 sa: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
m (Active Model Serializers in Ruby on Rails)
 
No edit summary
Line 1: Line 1:
Some sample wiki.
Active Model Serializers
 
Ruby on Rails offers strong features to write api based server applications. One of these features is Active Model Serializers which help the api designer to have fine control over the response the api application generates to data requests. Active Model Serializers help programmers do this very easily and cleanly without breaking separation of concerns in a rails application. Active Model serializers promote convention over configuration, thus reducinging code bloat and increasing code scalibility and readability.
 
Introduction
 
<draw diagram of a api server application which serves data in various formats>

Revision as of 22:38, 17 September 2014

Active Model Serializers

Ruby on Rails offers strong features to write api based server applications. One of these features is Active Model Serializers which help the api designer to have fine control over the response the api application generates to data requests. Active Model Serializers help programmers do this very easily and cleanly without breaking separation of concerns in a rails application. Active Model serializers promote convention over configuration, thus reducinging code bloat and increasing code scalibility and readability.

Introduction

<draw diagram of a api server application which serves data in various formats>