mirror of
https://github.com/lloeki/minimal-rack/
synced 2025-12-06 13:14:39 +01:00
Make apps uniform
This commit is contained in:
parent
de989153e4
commit
cfba5211d0
6 changed files with 127 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue