diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-02-19 14:30:46 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-02-19 14:30:46 +0000 |
commit | 9315039e0a95b0234b7736f359fc039550f45e08 (patch) | |
tree | a96bd2888004e027b5e460066c3e8e42d8e6e559 /doc/UPGRADING | |
parent | 37575f27feb19396671e6760b578265f841de733 (diff) | |
download | redmine-9315039e0a95b0234b7736f359fc039550f45e08.tar.gz redmine-9315039e0a95b0234b7736f359fc039550f45e08.zip |
Use Bundler for gem management (#5638).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8904 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc/UPGRADING')
-rw-r--r-- | doc/UPGRADING | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/doc/UPGRADING b/doc/UPGRADING index e1dafa879..ceaf55749 100644 --- a/doc/UPGRADING +++ b/doc/UPGRADING @@ -1,7 +1,7 @@ == Redmine upgrade Redmine - project management software -Copyright (C) 2006-2011 Jean-Philippe Lang +Copyright (C) 2006-2012 Jean-Philippe Lang http://www.redmine.org/ @@ -20,7 +20,14 @@ http://www.redmine.org/ 4. Copy the folders of the installed plugins and themes into new installation -5. Generate a session store secret +5. Install the required gems by running: + bundle install --without development test + + If ImageMagick is not installed on your system, you should skip the installation + of the rmagick gem using: + bundle install --without development test rmagick + +6. Generate a session store secret Redmine stores session data in cookies by default, which requires a secret to be generated. Under the new application directory run: @@ -28,7 +35,7 @@ http://www.redmine.org/ DO NOT REPLACE OR EDIT ANY OTHER FILES. -6. Migrate your database +7. Migrate your database If you are upgrading to Rails 2.3.14 as part of this migration, you need to upgrade the plugin migrations before running the plugin migrations @@ -43,20 +50,14 @@ http://www.redmine.org/ migrations using: rake db:migrate_plugins RAILS_ENV="production" -7. Clean up - - Clear the cache and the existing sessions by running: +8. Clear the cache and the existing sessions by running: rake tmp:cache:clear rake tmp:sessions:clear -8. Restart the application server (e.g. mongrel, thin, passenger) - -9. Finally go to "Administration -> Roles & permissions" to check/set permissions - for new features, if any - -== Notes +9. Restart the application server (e.g. mongrel, thin, passenger) -* Rails 2.3.14 is required for versions 1.3.x. +10. Finally go to "Administration -> Roles & permissions" to check/set permissions + for new features, if any == References |