Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade puma gem to 5.2.1 #413

Merged
merged 2 commits into from Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -6,7 +6,7 @@ ruby '~> 2.6.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.2'
# Use Puma as the app server
gem 'puma', '~> 4.3'
gem 'puma', '~> 5.2.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Expand Up @@ -230,7 +230,7 @@ GEM
pry (>= 0.10.4)
psych (3.1.0)
public_suffix (4.0.1)
puma (4.3.5)
puma (5.2.2)
nio4r (~> 2.0)
raabro (1.1.6)
racc (1.5.2)
Expand Down Expand Up @@ -461,7 +461,7 @@ DEPENDENCIES
listen (>= 3.0.5, < 3.2)
pg (~> 1.1)
pry-rails (~> 0.3.9)
puma (~> 4.3)
puma (~> 5.2.1)
rack-mini-profiler (~> 2.0)
rails (~> 6.0.2)
rails-controller-testing
Expand Down
2 changes: 1 addition & 1 deletion spec/services/github_client/pull_request_spec.rb
Expand Up @@ -23,7 +23,7 @@
end

describe '#files' do
let(:project) { create(:project) }
let(:project) { create(:project, name: 'MyProject') }
let(:pull_request) { create(:pull_request, project: project) }
let(:pull_request_file_payload) { create(:pull_request_file_payload) }

Expand Down