From 33d7fa2b57d516fd805398fe1a32cfed9d03e355 Mon Sep 17 00:00:00 2001 From: Jeff Casimir Date: Thu, 20 Oct 2011 21:49:40 -0400 Subject: [PATCH] Updating README for 0.9.4 release --- Readme.markdown | 23 +++++++++++++++-------- lib/draper/version.rb | 2 +- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/Readme.markdown b/Readme.markdown index 8fcca9c..56baff9 100644 --- a/Readme.markdown +++ b/Readme.markdown @@ -20,17 +20,24 @@ 6. Output the instance methods in your view templates ex: `@article_decorator.created_at` +## Watch the RailsCast + +Ryan Bates has put together an excellent RailsCast on Draper based on the 0.8.0 release: + +[![RailsCast #286](https://img.skitch.com/20111021-dgxmqntq22d37fthky6pttk59n.jpg "RailsCast #286 - Draper")](http://railscasts.com/episodes/286-draper) + ## What's New -### Version 0.9.3 +### Version 0.9.X -* Helpers are available from the decorator class level, so you could write a `ArticleDecorator.new_article_link` that uses `h.link_to` -* 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 to resolve cross-request issues -* Decorated collections now return a collection proxy instead of an array, which fixes many compatibility issues -* Automatically generate RSpec/Test::Unit stub for decorator class +* `.4`: Improved the collection proxy's `respond_to` and `to_ary` to play nicely with Rails' `render` +* `.3`: Helpers are available from the decorator class level, so you could write a `ArticleDecorator.new_article_link` that uses `h.link_to` +* `.2`: Automatically generate a named accessor for the wrapped object, so now inside of `ArticleDecorator` you can use `article` instead of just `model` +* `.2`: Automatically generate RSpec/Test::Unit stub for decorator class +* `.1`: Removed the `lazy_helpers` method to favor using `include Draper::LazyHelpers` +* `.1`: Refactored how methods are selected for delegation to the wrapped model +* `.0`: Fixed how the view context is stored to resolve cross-request issues +* `.0`: Decorated collections now return a collection proxy instead of an array, which fixes many compatibility issues ## Goals diff --git a/lib/draper/version.rb b/lib/draper/version.rb index ce43e65..04476cd 100644 --- a/lib/draper/version.rb +++ b/lib/draper/version.rb @@ -1,3 +1,3 @@ module Draper - VERSION = "0.9.3" + VERSION = "0.9.4" end