Make apps uniform

This commit is contained in:
Loic Nageleisen 2024-05-22 16:36:51 +02:00
parent de989153e4
commit cfba5211d0
Signed by: lloeki
GPG key ID: D05DAEE6889F94C2
6 changed files with 127 additions and 13 deletions

View file

@ -7,6 +7,12 @@ rack:
ruby: '>= 2.4.0'
gem:
rackup: '>= 0'
# thin is not (yet) compatible with rack 3
# TODO: don't bring in an unneeded server (e.g wiht this puma brings in thin)
thin:
github: 'lloeki/thin'
branch: 'rack-3'
# TODO: add blanket incompatibility declaration via e.g
# thin: false
sinatra:
- version: '~> 1.0'
@ -62,6 +68,16 @@ rails:
- version: '~> 7.1.0'
# 3.3 has a bug: https://bugs.ruby-lang.org/issues/20085
ruby: ['>= 2.7', '< 3.3']
gem:
sinatra: '>= 0.a'
grape: '>= 0.a'
pry: '> 0'
# thin is not (yet) compatible with rack 3
thin:
github: 'lloeki/thin'
branch: 'rack-3'
# TODO: add blanket incompatibility declaration via e.g
# thin: false
grape:
- version: ['~> 1.0', '< 1.3']
ruby: ['>= 2.0', '< 3.0']
@ -85,3 +101,9 @@ grape:
ruby: ['>= 2.6']
gem:
rackup: '>= 0'
# thin is not (yet) compatible with rack 3
thin:
github: 'lloeki/thin'
branch: 'rack-3'
# TODO: add blanket incompatibility declaration via e.g
# thin: false