New version fixing important Test::Unit generator issue

This commit is contained in:
Jeff Casimir 2011-10-19 23:46:52 -04:00
parent 494bb2438f
commit c3a27242d9
2 changed files with 3 additions and 3 deletions

View File

@ -22,14 +22,14 @@
## What's New
### Version 0.9.1
### Version 0.9.2
* Automatically generate a named accessor for the wrapped object, so now inside of `ArticleDecorator` you can use `article` instead of just `model`
* 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?]
* Automatically generate RSpec/Test::Unit stub for decorator class
## Goals

View File

@ -1,3 +1,3 @@
module Draper
VERSION = "0.9.1"
VERSION = "0.9.2"
end