Feature #41976 » Add-Ruby-3.4-to-supported-Ruby-versions.patch
.github/workflows/tests.yml | ||
---|---|---|
13 | 13 | |
14 | 14 |
strategy: |
15 | 15 |
matrix: |
16 |
ruby: ['3.1', '3.2', '3.3'] |
|
16 |
ruby: ['3.1', '3.2', '3.3', '3.4']
|
|
17 | 17 |
db: ['postgresql', 'mysql2', 'sqlite3'] |
18 | 18 |
fail-fast: false |
19 | 19 |
Gemfile | ||
---|---|---|
1 | 1 |
source 'https://rubygems.org' |
2 | 2 | |
3 |
ruby '>= 3.1.0', '< 3.4.0'
|
|
3 |
ruby '>= 3.1.0', '< 3.5.0'
|
|
4 | 4 | |
5 | 5 |
gem 'rails', '7.2.2.1' |
6 | 6 |
gem 'rouge', '~> 4.5' |
doc/INSTALL | ||
---|---|---|
7 | 7 | |
8 | 8 |
== Requirements |
9 | 9 | |
10 |
* Ruby 3.1, 3.2, 3.3 |
|
10 |
* Ruby 3.1, 3.2, 3.3, 3.4
|
|
11 | 11 | |
12 | 12 |
* A database: |
13 | 13 |
* MySQL (tested with MySQL 8) |
... | ... | |
67 | 67 | |
68 | 68 |
using: |
69 | 69 |
bundle exec rake assets:precompile RAILS_ENV="production" |
70 |
|
|
70 | ||
71 | 71 |
If deploying to a sub-uri, set the relative URL root as follows: |
72 | 72 |
bundle exec rake assets:precompile RAILS_ENV="production" RAILS_RELATIVE_URL_ROOT=/sub-uri |
73 |
|
|
73 | ||
74 | 74 |
If you experience issues with missing assets in the browser, try |
75 | 75 |
removing the public/assets directory before re-running the precompile: |
76 | 76 |
bundle exec rake assets:clobber RAILS_ENV="production" |
- « Previous
- 1
- 2
- Next »