Skip to content
Merged
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 Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ group :documentation do
end

gem 'capybara'
gem 'ffi', '~> 1.15.5'
gem 'ffi', '> 1.15.5'
gem 'rake', '> 12'
gem 'rubocop', '~> 1.28.2'

Expand Down
14 changes: 13 additions & 1 deletion script/update_rubygems_and_install_bundler
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,21 @@ function is_ruby_3_plus {
fi
}

if is_ruby_3_plus; then
function is_ruby_3_1_plus {
if ruby -e "exit(RUBY_VERSION.to_f >= 3.1)"; then
return 0
else
return 1
fi
}


if is_ruby_3_1_plus; then
gem update --no-document --system
gem install --no-document bundler
elif is_ruby_3_plus; then
gem update --no-document --system '3.5.23'
gem install --no-document bundler
else
gem update --no-document --system '3.4.22'
gem install --no-document bundler
Expand Down
Loading