Skip to content

Commit

Permalink
Swap from unicorn to puma
Browse files Browse the repository at this point in the history
  • Loading branch information
zenspider committed Feb 5, 2025
1 parent 01b4bc5 commit b542bb8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ gem "bootsnap", "~> 1.11"
gem "devise", "~> 4.8"
gem "rails_admin", "~> 3.0"
gem "rake", "~> 13.0"
gem "unicorn", "~> 6.0"
gem "puma", "~> 6.6"
gem "sprockets", "~> 4.0"

# noise dependencies:
Expand Down
9 changes: 3 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ GEM
activerecord
kaminari-core (= 1.2.2)
kaminari-core (1.2.2)
kgio (2.11.4)
logger (1.6.5)
loofah (2.24.0)
crass (~> 1.0.2)
Expand Down Expand Up @@ -171,6 +170,8 @@ GEM
psych (5.2.3)
date
stringio
puma (6.6.0)
nio4r (~> 2.0)
racc (1.8.1)
rack (3.1.8)
rack-session (2.1.0)
Expand Down Expand Up @@ -220,7 +221,6 @@ GEM
rake (>= 12.2)
thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6)
raindrops (0.20.1)
rake (13.2.1)
rdoc (6.11.0)
psych (>= 4.0.0)
Expand Down Expand Up @@ -258,9 +258,6 @@ GEM
railties (>= 6.0.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicorn (6.1.0)
kgio (~> 2.6)
raindrops (~> 0.7)
uri (1.0.2)
useragent (0.16.11)
warden (1.2.9)
Expand All @@ -285,14 +282,14 @@ DEPENDENCIES
minitest-rails (~> 8.0.0)
pg (~> 1.0)
pry (~> 0.13)
puma (~> 6.6)
rails (~> 8.0.0)
rails-controller-testing (~> 1.0)
rails_admin (~> 3.0)
rake (~> 13.0)
sassc-rails (~> 2.1)
sprockets (~> 4.0)
sqlite3 (~> 2.0)
unicorn (~> 6.0)

RUBY VERSION
ruby 3.4.1p0
Expand Down
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
web: bundle exec puma -p $PORT -C ./config/puma.rb
2 changes: 1 addition & 1 deletion config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@
config.action_controller.raise_on_missing_callback_actions = true

require "pry"
require "pry-byebug"
# require "pry-byebug" # currently broken against latest pry
config.console = Pry
end

0 comments on commit b542bb8

Please sign in to comment.