remove net-smtp gem, not used and causing drama

This commit is contained in:
Kyle Drake 2025-02-25 16:32:02 -06:00
parent 03b052a3a7
commit 1584bb0865
3 changed files with 0 additions and 10 deletions

View file

@ -10,7 +10,6 @@ gem 'sinatra-xsendfile', require: 'sinatra/xsendfile'
gem 'puma', '< 7', require: nil gem 'puma', '< 7', require: nil
gem 'sidekiq', '~> 7' gem 'sidekiq', '~> 7'
gem 'mail' gem 'mail'
gem 'net-smtp'
gem 'tilt' gem 'tilt'
gem 'erubi' gem 'erubi'
gem 'stripe' #, source: 'https://code.stripe.com/' gem 'stripe' #, source: 'https://code.stripe.com/'

View file

@ -445,7 +445,6 @@ DEPENDENCIES
mock_redis mock_redis
monetize monetize
msgpack msgpack
net-smtp
nokogiri nokogiri
paypal-recurring paypal-recurring
pg pg

View file

@ -128,14 +128,6 @@ Dir.glob('workers/*.rb').each {|w| require File.join(DIR_ROOT, "/#{w}") }
DB.loggers << Logger.new(STDOUT) if ENV['RACK_ENV'] == 'development' DB.loggers << Logger.new(STDOUT) if ENV['RACK_ENV'] == 'development'
Mail.defaults do Mail.defaults do
#options = { :address => "smtp.gmail.com",
# :port => 587,
# :domain => 'your.host.name',
# :user_name => '<username>',
# :password => '<password>',
# :authentication => 'plain',
# :enable_starttls_auto => true }
options = {} options = {}
delivery_method :sendmail, options delivery_method :sendmail, options
end end