We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e564ee commit 6cbe083Copy full SHA for 6cbe083
instrumentation/sinatra/Appraisals
@@ -4,16 +4,10 @@
4
#
5
# SPDX-License-Identifier: Apache-2.0
6
7
-appraise 'sinatra-4.x' do
8
- gem 'sinatra', '~> 4.0'
9
-end
10
-
11
-appraise 'sinatra-3.x' do
12
- gem 'sinatra', '~> 3.0'
13
14
15
-appraise 'sinatra-2.x' do
16
- gem 'sinatra', '~> 2.1'
+%w[4.1 3.0 2.1].each do |version|
+ appraise "sinatra-#{version}" do
+ gem 'sinatra', "~> #{version}"
+ end
17
end
18
19
appraise 'sinatra-latest' do
0 commit comments