Skip to content

Commit 5feac05

Browse files
committed
Use puma.
1 parent 26f1cc6 commit 5feac05

File tree

6 files changed

+8
-14
lines changed

6 files changed

+8
-14
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 13:39:51 UTC using RuboCop version 1.81.1.
3+
# on 2025-10-01 17:05:23 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: 1 addition & 2 deletions
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'
1314
gem 'rack'
1415
gem 'rack-robotz'
1516
gem 'rack-server-pages'
1617
gem 'slack-ruby-bot-server-mailchimp'
1718
gem 'slack-ruby-bot-server-rtm'
18-
gem 'unicorn'
1919

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

Gemfile.lock

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ GEM
146146
kaminari-grape (1.0.1)
147147
grape
148148
kaminari-core (~> 1.0)
149-
kgio (2.11.4)
150149
language_server-protocol (3.17.0.5)
151150
lint_roller (1.1.0)
152151
logger (1.7.0)
@@ -190,6 +189,7 @@ GEM
190189
newrelic_rpm
191190
slack-ruby-bot (>= 0.10.5)
192191
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,6 +219,8 @@ GEM
219219
date
220220
stringio
221221
public_suffix (6.0.2)
222+
puma (7.0.4)
223+
nio4r (~> 2.0)
222224
racc (1.8.1)
223225
rack (3.2.1)
224226
rack-cors (3.0.0)
@@ -234,7 +236,6 @@ GEM
234236
rackup (2.2.1)
235237
rack (>= 3)
236238
rainbow (3.1.1)
237-
raindrops (0.20.1)
238239
rake (13.3.0)
239240
rdoc (6.14.2)
240241
erb
@@ -343,17 +344,13 @@ GEM
343344
unicode-display_width (3.2.0)
344345
unicode-emoji (~> 4.1)
345346
unicode-emoji (4.1.0)
346-
unicorn (6.1.0)
347-
kgio (~> 2.6)
348-
raindrops (~> 0.7)
349347
uri (1.0.3)
350348
vcr (6.3.1)
351349
base64
352350
webmock (3.25.1)
353351
addressable (>= 2.8.0)
354352
crack (>= 0.3.2)
355353
hashdiff (>= 0.4.0, < 2.0.0)
356-
webrick (1.9.1)
357354
websocket (1.2.11)
358355
websocket-driver (0.7.7)
359356
base64
@@ -390,6 +387,7 @@ DEPENDENCIES
390387
newrelic-slack-ruby-bot
391388
newrelic_rpm
392389
ostruct
390+
puma
393391
rack
394392
rack-robotz
395393
rack-server-pages
@@ -404,10 +402,8 @@ DEPENDENCIES
404402
selenium-webdriver
405403
slack-ruby-bot-server-mailchimp
406404
slack-ruby-bot-server-rtm
407-
unicorn
408405
vcr
409406
webmock
410-
webrick
411407

412408
RUBY VERSION
413409
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 unicorn -p $PORT
1+
web: bundle exec puma -p $PORT

slack-api-explorer/commands/help.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def self.commands
3232
General
3333
-------
3434
35-
help - get this helpful message
35+
help - Get this helpful message.
3636
3737
Commands
3838
--------

spec/support/capybara.rb

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

0 commit comments

Comments
 (0)