Skip to content

Commit

Permalink
Make CI pass on Ruby 2.6 (#1928)
Browse files Browse the repository at this point in the history
traces 0.10.0 started to use Ruby 2.7 syntax without specifying required
Ruby version
socketry/traces#8 (comment)

async-http 0.60.2 added traces 0.10.0 as dependency
https://github.com/socketry/async-http/pull/124/files#r1237988899

(falcon depends on async-http)
  • Loading branch information
dentarg authored Jun 22, 2023
1 parent 5f4dde1 commit 6d8f180
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ gem 'yard'
gem 'rack-protection', path: 'rack-protection'
gem 'sinatra-contrib', path: 'sinatra-contrib'

# traces 0.10.0 started to use Ruby 2.7 syntax without specifying required Ruby version
# https://github.com/socketry/traces/pull/8#discussion_r1237988182
# async-http 0.60.2 added traces 0.10.0 as dependency
# https://github.com/socketry/async-http/pull/124/files#r1237988899
gem 'traces', '< 0.10.0' if RUBY_VERSION >= '2.6.0' && RUBY_VERSION < '2.7.0'

gem 'activesupport', '~> 6.1'

gem 'asciidoctor'
Expand Down

0 comments on commit 6d8f180

Please sign in to comment.