现在默认情况下,每当我运行rails时,它都会使用puma启动rails
我希望能够在我的开发环境中运行webrick,因为使用byebug进行调试时puma不能正常工作
# Gemfile
gem 'puma'
# config/puma.rb
workers Integer(ENV['WEB_CONCURRENCY'] || 2)
threads_count = Integer(ENV['MAX_THREADS'] || 5)
threads threads_count, threads_count
preload_app!
rackup DefaultRackup
port ENV['PORT'] || 3000
environment ENV['RACK_ENV'] || 'development'
on_worker_boot do
ActiveRecord::Base.establish_connection
end
答案 0 :(得分:1)
您可以通过将 puma gem限制为生产(并且可能只在适合您的需要时进行测试)环境来实现此目的。
# Gemfile
group :test, :production do
gem 'puma'
end
然后运行bundle install --without test production
。