diff options
Diffstat (limited to 'doc/CHANGES.md')
-rw-r--r-- | doc/CHANGES.md | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 51da903b1..c01bbbe17 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -2,18 +2,26 @@ ## Highlighted features -* Ruby dependencies are now handled by Bundler +* Ruby dependencies are now handled by Bundler. ## Upgrade notes -* Existing installations will need to install the Bundler gem. See - `INSTALL.md` for details. - -* Because dependencies are now handled by Bundler, when you next run - the `rails-post-deploy` script, it will download, compile and - install various things. Part of this is compiling xapian, which may - take a *long* time (subsequent deployments should be much faster) - +* You should set aside a while to do this upgrade, as it will require + some manual intervention and a wait while dependencies compile: + + * Existing installations will need to install the Bundler gem. See + `INSTALL.md` for details. + + * Because dependencies are now handled by Bundler, when you next run + the `rails-post-deploy` script, it will download, compile and + install various things. Part of this is compiling xapian, which may + take a *long* time (subsequent deployments should be much faster) + +* As a side effect of using bundler, `rake` tasks (such as `rake spec` + and `rake db:migrate`) should now be prefixed with `bundle exec` + (e.g. `bundle exec rake spec`) to ensure they use the correct + bundled environment + # Version 0.5.1 ## Highlighted features |