Delete development_async gems from Gemfile

I'm pretttty sure we fully do not need these, they were an attempt to solve the "contacting neopets.com is slow" problem, which we now solve by having other processes who are better at concurrency handle that request.
This commit is contained in:
Matchu 2023-07-21 17:54:29 -07:00
parent 3e23543ab4
commit 2155b9de4c

17
Gemfile
View file

@ -87,23 +87,6 @@ group :development do
gem 'rvm-capistrano', '~> 1.5.6', require: false
end
group :development_async do
# async wrappers
gem 'eventmachine', :git => 'git://github.com/eventmachine/eventmachine.git'
gem 'rack-fiber_pool', :require => 'rack/fiber_pool'
gem 'em-synchrony', :git => 'git://github.com/igrigorik/em-synchrony.git', :require => [
'em-synchrony',
'em-synchrony/em-http'
]
# async activerecord requires
gem 'mysqlplus', :git => 'git://github.com/oldmoe/mysqlplus.git', :require => 'mysqlplus'
gem 'em-mysqlplus', :git => 'git://github.com/igrigorik/em-mysqlplus.git', :require => 'em-activerecord'
# async http requires
gem 'em-http-request',:git => 'git://github.com/igrigorik/em-http-request.git', :require => 'em-http'
end
group :production do
gem 'memcache-client', '~> 1.8.5', :require => 'memcache'
gem 'passenger_monit', '~> 0.1.1'