diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-05-04 00:26:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 00:26:46 +0200 |
commit | 340fa34513b5a290ee0ce7d348a6dd4cf14d4a80 (patch) | |
tree | 4e672fcc82dc9123d52d9305ab776aba90ccb36c /Gemfile | |
parent | e2d1d3b4289306d23be71271a1e00be404472100 (diff) |
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.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile index 6bcec97ad..b34061a26 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' |