README.rdoc in inherited_resources-1.0.pre vs README.rdoc in inherited_resources-1.0.0
- old
+ new
@@ -8,11 +8,11 @@
code by following fat models and skinny controllers convention. There is
a screencast made by Fabio Akita about its features:
http://akitaonrails.com/2009/09/01/screencast-real-thin-restful-controllers-with-inherited-resources
-Inherited Resources is tested and compatible with Rails 2.2.x and Rails 2.3.x.
+Inherited Resources is tested and compatible with Rails 2.3.x.
== Installation
Inherited Resources is available as gem on Gemcutter, so just run the following:
@@ -20,18 +20,18 @@
If you want it as plugin, just do:
script/plugin install git://github.com/josevalim/inherited_resources.git
-== Inherited Resources 1.0.pre
+== Upgrading to Inherited Resources 1.0
-Inherited Resources is close to 1.0 version. A couple things changed,
-so be sure to read the following sections if you want to try it out:
+Inherited Resources finally reached 1.0 version. A couple things changed,
+so be sure to read the following sections:
=== HasScope
-In Inherited Resources 1.0, has_scope is not part of its core anymore.
+Since Inherited Resources 1.0, has_scope is not part of its core anymore.
However, if you are using has_scope in your application, Inherited Resources
will handle all the required hooks automatically.
has_scope gem is available at:
@@ -41,11 +41,11 @@
sudo gem install has_scope
=== Responders
-In Inherited Resources 1.0, responders are not part of its core anymore,
+Since Inherited Resources 1.0, responders are not part of its core anymore,
but is set as Inherited Resources dependency and it's used by default by
InheritedResources controllers. Be sure to check the documentation to see
how it will change your application:
http://github.com/plataformatec/responders
@@ -72,10 +72,10 @@
class ProjectsController < InheritedResources::Base
end
And all actions are defined and working, check it! Your projects collection
(in the index action) is still available in the instance variable @projects
-and your project resource (all other actions) is available as @ project.
+and your project resource (all other actions) is available as @project.
The next step is to define which mime types this controller provides:
class ProjectsController < InheritedResources::Base
respond_to :html, :xml, :json