README.md in exodus-1.1.2 vs README.md in exodus-1.1.3

- old
+ new

@@ -169,6 +169,17 @@ ### db:mongo_info Prints on the screen information about the current mongo connection rake db:mongo_info +## Namespacing + You might be using other gems in your project that uses `rake db:migrate` or `rake db:rollback`. In order to avoid conflicts you can define rake_namespace, in the Ruby code: + + Exodus.configure do |config| + config.rake_namespace = 'mongo' + end + + Or in your Yaml file: + + migration: + rake_namespace: 'mongo'