Skip to content

Commit

Permalink
[727] Upgrade puma to resolve compilation error
Browse files Browse the repository at this point in the history
Addresses: [737](#737)

According to [Issue #2304](puma/puma#2304) at puma/puma, the `ctype.h` header file was no being included.

This has been fixed at version 4.3.6.

**Modifications:**

- change Gemfile to specify at least version 4.3.6 for puma
  • Loading branch information
tamouse committed Oct 19, 2020
1 parent bd6bbfa commit 7aedfbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -73,7 +73,7 @@ group :production do
end

group :production, :staging, :review do
gem "puma"
gem "puma", "~> 4.3.6"
gem "rails_12factor"
end

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Expand Up @@ -211,7 +211,7 @@ GEM
pry-rails (0.3.9)
pry (>= 0.10.4)
public_suffix (4.0.5)
puma (4.3.5)
puma (4.3.6)
nio4r (~> 2.0)
rack (2.2.3)
rack-mini-profiler (0.10.7)
Expand Down Expand Up @@ -406,7 +406,7 @@ DEPENDENCIES
pg (~> 0.18)
pry-byebug
pry-rails
puma
puma (~> 4.3.6)
rack-mini-profiler (~> 0.10)
rack-timeout
rails (~> 5.1.7)
Expand Down

0 comments on commit 7aedfbf

Please sign in to comment.