README.rdoc in inherited_resources-0.9.2 vs README.rdoc in inherited_resources-0.9.3
- old
+ new
@@ -1,8 +1,8 @@
Inherited Resources
License: MIT
-Version: 0.9.1
+Version: 0.9.2
== Description
Inherited Resources speeds up development by making your controllers inherit
all restful actions so you just have to focus on what is important. It makes
@@ -21,12 +21,12 @@
== Installation
Install Inherited Resources is very easy. It is stored in GitHub, so just run
the following:
- gem sources -a http://gems.github.com
- sudo gem install josevalim-inherited_resources
+ gem sources -a http://gemcutter.org
+ sudo gem install inherited_resources
If you want it as plugin, just do:
script/plugin install git://github.com/josevalim/inherited_resources.git
@@ -230,10 +230,10 @@
== Some DSL
For those DSL lovers, InheritedResources won't leave you alone. You can overwrite
your success/failure blocks straight from your class binding. For it, you just
-need to add a DSL block to your application controller:
+need to add a DSL module to your application controller:
class ApplicationController < ActionController::Base
include InheritedResources::DSL
end