1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00

Updated README with changelog

This commit is contained in:
Jeff Casimir 2011-10-19 23:11:48 -04:00
parent 18400f4d97
commit 19f1fc7b69

View file

@ -20,6 +20,16 @@
6. Output the instance methods in your view templates 6. Output the instance methods in your view templates
ex: `@article_decorator.created_at` ex: `@article_decorator.created_at`
## What's New
### Version 0.9.0
* Removed the `lazy_helpers` method to favor using `include Draper::LazyHelpers`
* Refactored how methods are selected for delegation to the wrapped model
* Fixed how the view context is stored in the `Thread.current` to resolve cross-request issues
* Decorated collections now return a collection proxy instead of an array, which fixes many compatibility issues
* Automatically generate `RSpec` stub for decorators [PENDING: Make this work properly for `Test::Unit` -- help?]
## Goals ## Goals
This gem makes it easy to apply the decorator pattern to domain models in a Rails application. This pattern gives you three wins: This gem makes it easy to apply the decorator pattern to domain models in a Rails application. This pattern gives you three wins: