Skip to content

Commit

Permalink
Use graphql < 2.1 when Ruby < 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
picandocodigo committed Nov 21, 2023
1 parent 7fd9ec2 commit 10d258a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ gem 'ecs-logging', require: 'ecs_logging/logger'
gem 'elasticsearch', require: nil
gem 'fakeredis', require: nil
gem 'faraday', require: nil
gem 'graphql', require: nil
if RUBY_VERSION < '2.7'
gem 'graphql', '< 2.1', require: nil
else
gem 'graphql', require: nil
end

if !defined?(JRUBY_VERSION) && RUBY_VERSION < '2.5'
gem 'google-protobuf', '< 3.12'
end
Expand Down

0 comments on commit 10d258a

Please sign in to comment.