README.md in devise-security-0.11.0 vs README.md in devise-security-0.11.1

- old
+ new

@@ -20,26 +20,26 @@ * **captcha support** for `sign_up`, `sign_in`, `recover` and `unlock` (to make automated mass creation and brute forcing of accounts harder) ## Getting started -Devise Security Extension works with Devise on Rails 3.2 onwards. You can add it to your Gemfile after you successfully set up Devise (see [Devise documentation](https://github.com/plataformatec/devise)) with: +Devise Security works with Devise on Rails 3.2 onwards. You can add it to your Gemfile after you successfully set up Devise (see [Devise documentation](https://github.com/plataformatec/devise)) with: ```ruby gem 'devise-security' ``` Run the bundle command to install it. -After you installed Devise Security Extension you need to run the generator: +After you installed Devise Security you need to run the generator: ```console -rails generate devise-security:install +rails generate devise_security:install ``` -The generator adds optional configurations to `config/initializers/devise.rb`. Enable -the modules you wish to use in the initializer you are ready to add Devise Security Extension modules on top of Devise modules to any of your Devise models: +The generator adds optional configurations to `config/initializers/devise-security.rb`. Enable +the modules you wish to use in the initializer you are ready to add Devise Security modules on top of Devise modules to any of your Devise models: ```ruby devise :password_expirable, :secure_validatable, :password_archivable, :session_limitable, :expirable ``` @@ -109,10 +109,10 @@ ``` 2. Run the initializer ```ruby rails generate easy_captcha:install ``` -3. Enable captcha - see "Configuration" of Devise Security Extension above. +3. Enable captcha - see "Configuration" of Devise Security above. 4. Add the captcha in the generated devise views for each controller you have activated ```erb <p><%= captcha_tag %></p> <p><%= text_field_tag :captcha %></p> ```