README.md in intercom-rails-0.4.0 vs README.md in intercom-rails-0.4.1

- old
+ new

@@ -2,11 +2,11 @@ The easiest way to install Intercom in a rails app. For interacting with the Intercom REST API, use the `intercom` gem (https://github.com/intercom/intercom-ruby) -Requires ruby 2.0 or higher for `intercom-rails >= 4.0` +Requires ruby 2.0 or higher for `intercom-rails >= 0.4.0` ## Installation Add this to your Gemfile: ```ruby @@ -53,11 +53,11 @@ ``` If your users can be defined in different ways in your app you can also pass an array as follows : ```ruby config.user.current = [Proc.new { current_user_object }, Proc.new { @user_object }] ``` -* If you want the Intercom Messenger to be available when there is no current user, set `config.include_for_logged_out_users = true` in your config and sign up for the [Respond](https://www.intercom.io/live-chat) package. +* If you want the Intercom Messenger to be available when there is no current user, set `config.include_for_logged_out_users = true` in your config and sign up for the [Inbox](https://www.intercom.io/live-chat) package. Feel free to mail us: team@intercom.io, if you're still having trouble. ## Configuration @@ -69,10 +69,10 @@ ``` **Note: This example is just for the sake of simplicity, you should never include this secret in source control. Instead, you should use the Rails [secret config](http://guides.rubyonrails.org/4_1_release_notes.html#config-secrets-yml) feature.** ### Shutdown -If you use Intercom Respond combined with another product like Engage, any user that uses a shared computer and browser with someone else will be able to see the most recently logged in user’s conversation history until the cookie expires. +If you use Intercom Inbox combined with another product like Messages, any user that uses a shared computer and browser with someone else will be able to see the most recently logged in user’s conversation history until the cookie expires. Because of this, it’s very important to properly shutdown Intercom when a user’s session on your app ends (via manually or automatically logging out). #### Using Devise If you use devise, you can override (if not already done) the session_controller by replacing in your `config/routes.rb` file :