Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'

gem 'activesupport', '~> 7'
gem 'sinatra', '~> 3'
gem 'sinatra', '~> 4.2'
gem 'rake', '~> 13'
gem 'puma'
gem 'puma', '~> 6.4', '>= 6.4.3'

gem 'travis-support', github: 'travis-ci/travis-support'
gem 'travis-config', github: 'travis-ci/travis-config'
gem 'travis-metrics', github: 'travis-ci/travis-metrics'

gem 'sidekiq', '~> 7'
gem 'sidekiq', '~> 7', '>= 7.1.3'

gem 'sentry-ruby'

Expand All @@ -23,6 +23,10 @@ gem 'metriks-librato_metrics', github: 'travis-ci/metriks-librato_metrics'

gem 'yajl-ruby', '~> 1.4'

# Security: constrain transitive deps to patched versions
gem 'rack', '>= 2.2.20'
gem 'rexml', '>= 3.3.9'

gem 'jemalloc', github: 'travis-ci/jemalloc-rb', branch: 'jemalloc-5.0'

group :development, :test do
Expand Down
51 changes: 31 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ GEM
atomic (1.1.101)
avl_tree (1.2.1)
atomic (~> 1.1)
base64 (0.1.1)
base64 (0.1.2)
coderay (1.1.3)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
connection_pool (2.5.5)
diff-lcs (1.5.0)
docile (1.4.0)
foreman (0.87.2)
Expand All @@ -69,32 +69,38 @@ GEM
concurrent-ruby (~> 1.0)
json (2.6.3)
language_server-protocol (3.17.0.3)
logger (1.7.0)
method_source (1.0.0)
minitest (5.19.0)
mustermann (3.0.0)
mustermann (3.0.4)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.9)
nio4r (2.7.5)
parallel (1.23.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
puma (6.3.1)
puma (6.6.1)
nio4r (~> 2.0)
racc (1.7.1)
rack (2.2.8)
rack-protection (3.1.0)
rack (~> 2.2, >= 2.2.4)
rack (3.2.4)
rack-protection (4.2.1)
base64 (>= 0.1.0)
logger (>= 1.6.0)
rack (>= 3.0.0, < 4)
rack-session (2.1.1)
base64 (>= 0.1.0)
rack (>= 3.0.0)
rack-test (2.1.0)
rack (>= 1.3)
rainbow (3.1.1)
rake (13.0.6)
redis-client (0.16.0)
redis-client (0.26.1)
connection_pool
regexp_parser (2.8.1)
rexml (3.2.6)
rexml (3.4.4)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand Down Expand Up @@ -139,11 +145,12 @@ GEM
ruby2_keywords (0.0.5)
sentry-ruby (5.10.0)
concurrent-ruby (~> 1.0, >= 1.0.2)
sidekiq (7.1.2)
concurrent-ruby (< 2)
sidekiq (7.3.9)
base64
connection_pool (>= 2.3.0)
logger
rack (>= 2.2.4)
redis-client (>= 0.14.0)
redis-client (>= 0.22.2)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
Expand All @@ -154,14 +161,16 @@ GEM
terminal-table
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
sinatra (3.1.0)
sinatra (4.2.1)
logger (>= 1.6.0)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.1.0)
rack (>= 3.0.0, < 4)
rack-protection (= 4.2.1)
rack-session (>= 2.0.0, < 3)
tilt (~> 2.0)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
tilt (2.2.0)
tilt (2.6.1)
timecop (0.9.8)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand All @@ -178,19 +187,21 @@ DEPENDENCIES
metriks!
metriks-librato_metrics!
pry
puma
puma (~> 6.4, >= 6.4.3)
rack (>= 2.2.20)
rack-test
rake (~> 13)
rexml (>= 3.3.9)
rspec (~> 3)
rubocop
rubocop-performance
rubocop-rake
rubocop-rspec
sentry-ruby
sidekiq (~> 7)
sidekiq (~> 7, >= 7.1.3)
simplecov
simplecov-console
sinatra (~> 3)
sinatra (~> 4.2)
timecop
travis-config!
travis-metrics!
Expand Down