Skip to content

Commit

Permalink
Merge branch 'ruby-3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ParadoxV5 committed Jan 8, 2024
2 parents dac4675 + c4e2141 commit 9a52bba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.0', engine: 'ruby', engine_version: '~> 3.0'
ruby '~> 3.3', engine: 'ruby', engine_version: '~> 3.3'

gem 'rake', '~> 13.1.0'
gem 'json', '~> 2.6'

# Development Apps
group :development do
group :type_check do
gem 'rbs', '~> 3.3.0', require: false
gem 'rbs', '~> 3.4.1', require: false
gem 'steep', '~> 1.6.0', require: false
end
group :documentation do
Expand Down
2 changes: 1 addition & 1 deletion src/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ static bool core(void) {
ruby_sysinit(&argc, &argv);
int error = ruby_setup();
if RB_LIKELY(!error) {
if RB_LIKELY(ruby_executable_node(ruby_options(1, (char*[]){"-e "}), &error)) {
if RB_LIKELY(ruby_executable_node(ruby_options(2, (char*[]){"ruby", "-e "}), &error)) {
ruby_script(arg0);
return true;
}
Expand Down

0 comments on commit 9a52bba

Please sign in to comment.