From 6ea18e88b471c1dcb50cd3a2d5faa239473f20b6 Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 4 May 2022 00:26:46 +0200 Subject: [PATCH] Bump minimum Ruby version (#18294) Mastodon has been incompatible with Ruby 2.5 for a few releases due to some dependencies, this just updates the Gemfile description to match that situation. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 6f11c391e..0a028b818 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ # frozen_string_literal: true source 'https://rubygems.org' -ruby '>= 2.5.0', '< 3.1.0' +ruby '>= 2.6.0', '< 3.1.0' gem 'pkg-config', '~> 1.4' gem 'rexml', '~> 3.2' -- 2.47.3