rabl-rails/CHANGELOG.md

32 lines
1.1 KiB
Markdown
Raw Normal View History

2012-07-25 21:48:21 +00:00
# CHANGELOG
2012-09-27 16:23:05 +00:00
## 0.2.1
* Avoid useless render on POST request with custom responder
* Custom responder now fallback to Rails default in case the template is not found
2012-09-24 14:02:18 +00:00
## 0.2.0
* Add `root` in DSL to set root without changing the data source
2012-09-17 13:28:14 +00:00
* Add XML renderer
* Use MultiJson's preferred JSON engine as default (shmeltex)
2012-09-13 14:08:42 +00:00
* Default template to render with responder can be set per controller
* Reponder works out of the box with devise
* object or collection can be skipped if use with `respond_to` blocks
2012-09-13 15:05:52 +00:00
2012-09-12 08:19:29 +00:00
## 0.1.3
2012-09-13 15:05:52 +00:00
* Render correctly when variables are not passed via the assigns ivar but as helper methods
2012-09-11 23:47:20 +00:00
(decent_exposure, focused_controller)
2012-09-11 09:49:07 +00:00
* Add custom Responder
2012-08-03 13:39:08 +00:00
## 0.1.2
2012-07-26 14:37:09 +00:00
* Add RablRails#render method (see README or source code)
* Fix fail when JSON engine is not found. Now fallback to MultiJson.default_adapter
2012-08-03 13:39:08 +00:00
* Warning message printed on logger when JSON engine fail to load
2012-07-26 14:37:09 +00:00
2012-07-25 21:48:21 +00:00
## 0.1.1
* Add CHANGELOG
2012-09-13 15:05:52 +00:00
* Remove unused test in loop
2012-07-25 21:48:21 +00:00
* Speed up rendering by not double copying variable from context
* Rename private variable to avoid name conflict
2012-09-14 19:52:26 +00:00
* Remove sqlite3 development dependency