Update to Ruby 3.3 (#20739)

This commit is contained in:
Mac Siri 2024-03-28 13:07:05 -04:00 committed by GitHub
parent eb452078e3
commit d3e8b06af0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 11 additions and 9 deletions

View file

@ -2,7 +2,7 @@
"name": "Forem DEVcontainer",
"dockerComposeFile": "../docker-compose.yml",
"service": "devcontainer",
"runServices": ["postgres", "redis", "chrome"],
"runServices": ["postgres", "redis"],
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"remoteEnv": {
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}",

View file

@ -1 +1 @@
3.2.0
3.3.0

View file

@ -1,4 +1,4 @@
FROM ghcr.io/forem/ruby:3.2.0@sha256:fdf9539f1da2ec74043e588328f2cbac33cbb2dfddbcc499087ab6e615ffe7d4 as base
FROM ghcr.io/forem/ruby:3.3.0@sha256:9cda49a45931e9253d58f7d561221e43bd0d47676b8e75f55862ce1e9997ab5c as base
FROM base as builder

View file

@ -342,9 +342,6 @@ GEM
globalid (1.2.1)
activesupport (>= 6.1)
google-protobuf (3.24.0)
google-protobuf (3.24.0-arm64-darwin)
google-protobuf (3.24.0-x86_64-darwin)
google-protobuf (3.24.0-x86_64-linux)
guard (2.18.1)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
@ -1131,7 +1128,7 @@ DEPENDENCIES
zonebie (~> 0.6.1)
RUBY VERSION
ruby 3.2.0p0
ruby 3.3.0p0
BUNDLED WITH
2.4.17

View file

@ -4,7 +4,7 @@ x-app: &app
context: .
args:
PG_MAJOR: '13'
image: ghcr.io/forem/forem:development
image: ghcr.io/forem/forem:1.0.0-development
environment: &env
NODE_ENV: ${NODE_ENV:-development}
RAILS_ENV: ${RAILS_ENV:-development}

View file

@ -10,5 +10,10 @@
}
},
"include": ["./app/javascript/**/*"],
"exclude": ["node_modules", "public"]
"exclude": [
"node_modules",
"public",
"app/assets/builds",
"app/javascript/storybook-static"
]
}