README.md in acts_as_api-0.4.3 vs README.md in acts_as_api-0.4.4
- old
+ new
@@ -1,8 +1,8 @@
# acts_as_api ![acts_as_api on travis ci](https://secure.travis-ci.org/fabrik42/acts_as_api.png?branch=master)
-acts_as_api makes creating XML/JSON responses in Rails 3 easy and fun.
+acts_as_api makes creating XML/JSON responses in Rails 3, 4 and 5 easy and fun.
It provides a simple interface to determine the representation of your model data, that should be rendered in your API responses.
In addition to Rails it theoretically can be used with any ruby app and any database (__ActiveRecord__, __Mongoid__ and __ActiveResource__ are supported out of the box) as it only has few dependencies.
@@ -53,10 +53,10 @@
## Features:
* DRY templates for your api responses
* Ships with support for __ActiveRecord__ and __Mongoid__
-* Support for Rails 3 Responders
+* Support for Rails 3/4 Responders (extracted to responders gem since Rails 5)
* Plays very well together with client libs like [Backbone.js](http://documentcloud.github.com/backbone), [RestKit](http://restkit.org) (iOS) or [gson](http://code.google.com/p/google-gson) (Android).
* Easy but very flexible syntax for defining the templates
* XML, JSON and JSON-P support out of the box, easy to extend
* Minimal dependecies (you can also use it without Rails)
* Supports multiple api rendering templates per model. This is especially useful for API versioning or for example for private vs. public access points to a user’s profile.