Redmine 4.1.1

This commit is contained in:
Manuel Cillero 2020-11-22 21:20:06 +01:00
parent 33e7b881a5
commit 3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,20 +1,20 @@
== Redmine installation
Redmine - project management software
Copyright (C) 2006-2017 Jean-Philippe Lang
Copyright (C) 2006-2019 Jean-Philippe Lang
http://www.redmine.org/
== Requirements
* Ruby >= 1.9.3
* Ruby 2.3, 2.4, 2.5, 2.6
* RubyGems
* Bundler >= 1.5.0
* A database:
* MySQL (tested with MySQL 5.1)
* PostgreSQL (tested with PostgreSQL 9.1)
* SQLite3 (tested with SQLite 3.7)
* MySQL (tested with MySQL 5.7)
* PostgreSQL (tested with PostgreSQL 9.5)
* SQLite3 (tested with SQLite 3.11)
* SQLServer (tested with SQLServer 2012)
Optional:
@ -29,7 +29,7 @@ Optional:
2. Create an empty utf8 encoded database: "redmine" for example
3. Configure the database parameters in config/database.yml
for the "production" environment (default database is MySQL and ruby1.9)
for the "production" environment (default database is MySQL)
4. Install the required gems by running:
bundle install --without development test
@ -74,12 +74,12 @@ Optional:
sudo chown -R redmine:redmine files log tmp public/plugin_assets
sudo chmod -R 755 files log tmp public/plugin_assets
8. Test the installation by running the WEBrick web server
8. Test the installation by running the Puma web server
Under the main application directory run:
ruby bin/rails server -e production
Once WEBrick has started, point your browser to http://localhost:3000/
Once Puma has started, point your browser to http://localhost:3000/
You should now see the application welcome page.
9. Use the default administrator account to log in:

View file

@ -6,7 +6,7 @@ More details can be found at http://www.redmine.org
= License
Copyright (C) 2006-2017 Jean-Philippe Lang
Copyright (C) 2006-2019 Jean-Philippe Lang
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -66,8 +66,17 @@ REDMINE_TEST_DAV_SERVER environment variable to specify another host.
Running Capybara tests
======================
You need to have PhantomJS WebDriver listening on port 4444:
`phantomjs --webdriver 4444`
You need to have ChromeDriver installed and available in your PATH:
https://sites.google.com/a/chromium.org/chromedriver/
Capybara tests can be run with:
`rake test:ui`
`rails test:system`
Running RuboCop, a static code analyzer
=======================================
RuboCop allows you to find out if the code violates the Ruby Style Guide.
Checking with RuboCop is recommended when you write patches.
You can run RuboCop with:
`bundle exec rubocop [file ...]`

View file

@ -1,7 +1,7 @@
== Redmine upgrade
Redmine - project management software
Copyright (C) 2006-2017 Jean-Philippe Lang
Copyright (C) 2006-2019 Jean-Philippe Lang
http://www.redmine.org/