Skip to content

Commit 8fd4b30

Browse files
authored
Merge pull request DataDog#3391 from DataDog/ivoanjo/pin-sinatra-integration-app
[NO-TICKET] Pin sinatra integration apps to sinatra 2
2 parents 916472f + 79322bc commit 8fd4b30

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

integration/apps/sinatra2-classic/Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem 'puma'
66
gem 'unicorn'
7-
gem 'sinatra'
7+
gem 'sinatra', '>= 2.2.4', '< 3'
88

99
gem 'dogstatsd-ruby'
1010
# Choose correct specs for 'ddtrace' demo environment
@@ -35,3 +35,4 @@ gem 'pry-byebug'
3535
gem 'rspec'
3636
gem 'rspec-wait'
3737
gem 'webrick' if RUBY_VERSION >= '2.3' # Older Rubies can just use the built-in version of webrick
38+
gem 'rackup'

integration/apps/sinatra2-modular/Gemfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ source "https://rubygems.org"
44

55
gem 'puma'
66
gem 'unicorn'
7-
gem 'sinatra'
8-
gem 'sinatra-router'
7+
gem 'sinatra', '>= 2.2.4', '< 3'
8+
gem 'sinatra-router', '>= 0.3.0'
99

1010
gem 'dogstatsd-ruby'
1111
# Choose correct specs for 'ddtrace' demo environment
@@ -36,3 +36,4 @@ gem 'pry-byebug'
3636
gem 'rspec'
3737
gem 'rspec-wait'
3838
gem 'webrick' if RUBY_VERSION >= '2.3' # Older Rubies can just use the built-in version of webrick
39+
gem 'rackup'

0 commit comments

Comments
 (0)