README.rdoc in devise-1.0.1 vs README.rdoc in devise-1.0.2

- old
+ new

@@ -28,21 +28,17 @@ Devise is based on Warden (http://github.com/hassox/warden), a Rack Authentication Framework so you need to install it as a gem. Please ensure you have it installed in order to use devise (see installation below). == Installation -All gems are on gemcutter, so you need to add gemcutter to your sources if you haven't yet: +Install warden gem if you don't have it installed: - sudo gem sources -a http://gemcutter.org/ - -Install warden gem if you don't have it installed (requires 0.6.4 or higher): - sudo gem install warden Install devise gem: - sudo gem install devise + sudo gem install devise --version=1.0.1 Configure warden and devise gems inside your app: config.gem 'warden' config.gem 'devise' @@ -52,9 +48,13 @@ ruby script/generate devise_install And you're ready to go. The generator will install an initializer which describes ALL Devise's configuration options, so be sure to take a look at it and the documentation as well: http://rdoc.info/projects/plataformatec/devise + +If you want to use Devise with bundler on Rails 2.3, you need to follow the instructions here: + + http://github.com/carlhuda/bundler/issues/issue/83 == Basic Usage This is a walkthrough with all steps you need to setup a devise resource, including model, migration, route files, and optional configuration. You MUST also check out the *Generators* section below to help you start.