Skip to content

Commit 981a938

Browse files
committed
Put back unicorn.
1 parent b7540a4 commit 981a938

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.rubocop_todo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2025-10-01 12:27:12 UTC using RuboCop version 1.81.1.
3+
# on 2025-10-01 12:34:41 UTC using RuboCop version 1.81.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ gem 'mongoid-scroll'
1010
gem 'newrelic_rpm'
1111
gem 'newrelic-slack-ruby-bot'
1212
gem 'ostruct'
13-
gem 'puma'
1413
gem 'rack'
1514
gem 'rack-robotz'
1615
gem 'rack-server-pages'
1716
gem 'slack-ruby-bot-server-mailchimp'
1817
gem 'slack-ruby-bot-server-rtm'
18+
gem 'unicorn'
1919

2020
group :development, :test do
2121
gem 'foreman'
@@ -43,4 +43,5 @@ group :test do
4343
gem 'selenium-webdriver'
4444
gem 'vcr'
4545
gem 'webmock'
46+
gem 'webrick'
4647
end

Gemfile.lock

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ GEM
146146
kaminari-grape (1.0.1)
147147
grape
148148
kaminari-core (~> 1.0)
149+
kgio (2.11.4)
149150
language_server-protocol (3.17.0.5)
150151
lint_roller (1.1.0)
151152
logger (1.7.0)
@@ -189,7 +190,6 @@ GEM
189190
newrelic_rpm
190191
slack-ruby-bot (>= 0.10.5)
191192
newrelic_rpm (9.21.0)
192-
nio4r (2.7.4)
193193
nokogiri (1.18.10-aarch64-linux-gnu)
194194
racc (~> 1.4)
195195
nokogiri (1.18.10-aarch64-linux-musl)
@@ -219,8 +219,6 @@ GEM
219219
date
220220
stringio
221221
public_suffix (6.0.2)
222-
puma (7.0.4)
223-
nio4r (~> 2.0)
224222
racc (1.8.1)
225223
rack (3.2.1)
226224
rack-cors (3.0.0)
@@ -236,6 +234,7 @@ GEM
236234
rackup (2.2.1)
237235
rack (>= 3)
238236
rainbow (3.1.1)
237+
raindrops (0.20.1)
239238
rake (13.3.0)
240239
rdoc (6.14.2)
241240
erb
@@ -344,13 +343,17 @@ GEM
344343
unicode-display_width (3.2.0)
345344
unicode-emoji (~> 4.1)
346345
unicode-emoji (4.1.0)
346+
unicorn (6.1.0)
347+
kgio (~> 2.6)
348+
raindrops (~> 0.7)
347349
uri (1.0.3)
348350
vcr (6.3.1)
349351
base64
350352
webmock (3.25.1)
351353
addressable (>= 2.8.0)
352354
crack (>= 0.3.2)
353355
hashdiff (>= 0.4.0, < 2.0.0)
356+
webrick (1.9.1)
354357
websocket (1.2.11)
355358
websocket-driver (0.7.7)
356359
base64
@@ -387,7 +390,6 @@ DEPENDENCIES
387390
newrelic-slack-ruby-bot
388391
newrelic_rpm
389392
ostruct
390-
puma
391393
rack
392394
rack-robotz
393395
rack-server-pages
@@ -402,8 +404,10 @@ DEPENDENCIES
402404
selenium-webdriver
403405
slack-ruby-bot-server-mailchimp
404406
slack-ruby-bot-server-rtm
407+
unicorn
405408
vcr
406409
webmock
410+
webrick
407411

408412
RUBY VERSION
409413
ruby 3.4.6p54

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: bundle exec puma -p $PORT
1+
web: bundle exec unicorn -p $PORT

spec/support/capybara.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Capybara.configure do |config|
44
config.app = Api::Middleware.instance
55
config.server_port = 9293
6-
config.server = :puma
6+
config.server = :webrick
77
end

0 commit comments

Comments
 (0)