diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-03-11 18:12:42 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-03-11 18:12:42 +0000 |
commit | de6e4ad43158f8bf13896f9a7077f18075cec1aa (patch) | |
tree | 8cdaddc2fde692ca944d778a70fa291f0a5f3e74 /doc/INSTALL | |
parent | bca9a8431e0478dfe9ebdc979ac3ad366f59e5aa (diff) | |
download | redmine-de6e4ad43158f8bf13896f9a7077f18075cec1aa.tar.gz redmine-de6e4ad43158f8bf13896f9a7077f18075cec1aa.zip |
INSTALL update (#12913).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11592 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc/INSTALL')
-rw-r--r-- | doc/INSTALL | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/INSTALL b/doc/INSTALL index 122d14fb1..415c9ee9d 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -7,7 +7,7 @@ http://www.redmine.org/ == Requirements -* Ruby 1.8.7, 1.9.2 or 1.9.3 +* Ruby 1.8.7, 1.9.2, 1.9.3 or 2.0.0 * RubyGems * Bundler >= 1.0.21 @@ -15,6 +15,7 @@ http://www.redmine.org/ * MySQL (tested with MySQL 5.1) * PostgreSQL (tested with PostgreSQL 9.1) * SQLite3 (tested with SQLite 3.6) + * SQLServer (tested with SQLServer 2012) Optional: * SCM binaries (e.g. svn, git...), for repository browsing (must be available in PATH) @@ -39,6 +40,12 @@ Optional: of the rmagick gem using: bundle install --without development test rmagick + Only the gems that are needed by the adapters you've specified in your database + configuration file are actually installed (eg. if your config/database.yml + uses the 'mysql2' adapter, then only the mysql2 gem will be installed). Don't + forget to re-run `bundle install` when you change config/database.yml for using + other database adapters. + If you need to load some gems that are not required by Redmine core (eg. fcgi), you can create a file named Gemfile.local at the root of your redmine directory. It will be loaded automatically when running `bundle install`. |