README.md in exvo_globalize-0.5.3 vs README.md in exvo_globalize-0.5.4
- old
+ new
@@ -25,11 +25,11 @@
## Requirements
-Rails 3.0+
+Rails 3.0+ (works both with Rails 3.0.* and Rails 3.1.*)
## Installation
@@ -49,13 +49,25 @@
```bash
$ bundle
```
-finally generate the database migration and the javascript library:
+make sure to define your default locale in `config/application.rb`:
+```ruby
+config.i18n.default_locale = :en
+```
+
+generate the database migration and the javascript library:
+
```bash
$ rails generate exvo_globalize:install
+```
+
+and finally run the migration:
+
+```bash
+$ bundle exec rake db:migrate
```
If you don’t plan on using I18n in javascript you can just delete the generated `public/javascripts/exvo_globalize_i18n.js` file.