Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Ruby 3.4 #552

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
gemfile:
- Gemfile
- gemfiles/Gemfile-rails-main
ruby: ["3.2", "3.3"]
ruby: ["3.3", "3.4"]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Testing the latest + previous should be sufficient for Rails. We test a wider range of Rubies in ruby-lsp's CI.

include:
- gemfile: "gemfiles/Gemfile-rails-main"
experimental: true
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.4
3.4.1
54 changes: 35 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ GEM
irb (~> 1.10)
reline (>= 0.3.8)
drb (2.2.1)
erubi (1.13.0)
erubi (1.13.1)
globalid (1.2.1)
activesupport (>= 6.1)
i18n (1.14.6)
Expand Down Expand Up @@ -127,13 +127,19 @@ GEM
net-protocol
netrc (0.11.0)
nio4r (2.7.4)
nokogiri (1.16.7-arm64-darwin)
nokogiri (1.18.1-aarch64-linux-gnu)
racc (~> 1.4)
nokogiri (1.16.7-x64-mingw-ucrt)
nokogiri (1.18.1-aarch64-linux-musl)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-darwin)
nokogiri (1.18.1-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-linux)
nokogiri (1.18.1-x64-mingw-ucrt)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-linux-musl)
racc (~> 1.4)
parallel (1.26.3)
parser (3.3.6.0)
Expand Down Expand Up @@ -222,25 +228,29 @@ GEM
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
securerandom (0.3.1)
sorbet (0.5.11635)
sorbet-static (= 0.5.11635)
sorbet-runtime (0.5.11635)
sorbet-static (0.5.11635-universal-darwin)
sorbet-static (0.5.11635-x86_64-linux)
sorbet-static-and-runtime (0.5.11635)
sorbet (= 0.5.11635)
sorbet-runtime (= 0.5.11635)
sorbet (0.5.11725)
sorbet-static (= 0.5.11725)
sorbet-runtime (0.5.11725)
sorbet-static (0.5.11725-aarch64-linux)
sorbet-static (0.5.11725-universal-darwin)
sorbet-static (0.5.11725-x86_64-linux)
sorbet-static-and-runtime (0.5.11725)
sorbet (= 0.5.11725)
sorbet-runtime (= 0.5.11725)
spoom (1.5.0)
erubi (>= 1.10.0)
prism (>= 0.28.0)
sorbet-static-and-runtime (>= 0.5.10187)
thor (>= 0.19.2)
sqlite3 (2.1.0-arm64-darwin)
sqlite3 (2.1.0-x64-mingw-ucrt)
sqlite3 (2.1.0-x86_64-darwin)
sqlite3 (2.1.0-x86_64-linux-gnu)
sqlite3 (2.5.0-aarch64-linux-gnu)
sqlite3 (2.5.0-aarch64-linux-musl)
sqlite3 (2.5.0-arm64-darwin)
sqlite3 (2.5.0-x64-mingw-ucrt)
sqlite3 (2.5.0-x86_64-darwin)
sqlite3 (2.5.0-x86_64-linux-gnu)
sqlite3 (2.5.0-x86_64-linux-musl)
stringio (3.1.2)
tapioca (0.16.5)
tapioca (0.16.6)
bundler (>= 2.2.25)
netrc (>= 0.11.0)
parallel (>= 1.21.0)
Expand Down Expand Up @@ -268,10 +278,16 @@ GEM
zeitwerk (2.7.1)

PLATFORMS
aarch64-linux
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These extra platforms are because Bundler suggested running bundle lock --normalize-platforms.

aarch64-linux-gnu
aarch64-linux-musl
arm64-darwin
universal-darwin
x64-mingw-ucrt
x86_64-darwin
x86_64-linux
x86_64-linux-gnu
x86_64-linux-musl

DEPENDENCIES
debug (>= 1.7.0)
Expand All @@ -291,4 +307,4 @@ DEPENDENCIES
tzinfo-data

BUNDLED WITH
2.5.19
2.6.2
Loading
Loading