From 0dc807bde57dcfa48064daf3c28cbf43b832a79a Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Sat, 17 Dec 2022 14:07:00 -0600 Subject: [PATCH] Worky now? --- Gemfile | 1 - Gemfile.lock | 8 +------- config/environments/development.rb | 2 +- config/environments/production.rb | 4 ++-- 4 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Gemfile b/Gemfile index ac9b1a4..b2ba268 100644 --- a/Gemfile +++ b/Gemfile @@ -61,5 +61,4 @@ end group :production do gem "puma" - gem "rails_12factor" end diff --git a/Gemfile.lock b/Gemfile.lock index 1202d98..1d5b447 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -196,7 +196,7 @@ GEM parallel (1.20.1) parser (3.0.2.0) ast (~> 2.4.1) - pg (1.2.3) + pg (1.4.5) poltergeist (1.18.1) capybara (>= 2.1, < 4) cliver (~> 0.3.1) @@ -235,11 +235,6 @@ GEM nokogiri (>= 1.6) rails-html-sanitizer (1.3.0) loofah (~> 2.3) - rails_12factor (0.0.3) - rails_serve_static_assets - rails_stdout_logging - rails_serve_static_assets (0.0.5) - rails_stdout_logging (0.0.5) railties (5.2.6) actionpack (= 5.2.6) activesupport (= 5.2.6) @@ -384,7 +379,6 @@ DEPENDENCIES puma rails (~> 5.1) rails-controller-testing - rails_12factor rspec-rails rubocop ruby_parser diff --git a/config/environments/development.rb b/config/environments/development.rb index 7168383..23e2853 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -10,7 +10,7 @@ DanBarberPhoto::Application.configure do config.eager_load = false # Show full error reports and disable caching - config.consider_all_requests_local = true + config.consider_all_requests_local = true config.action_controller.perform_caching = false # Don't care if the mailer can't send diff --git a/config/environments/production.rb b/config/environments/production.rb index 622942a..7c535b7 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -11,7 +11,7 @@ DanBarberPhoto::Application.configure do config.eager_load = true # Full error reports are disabled and caching is turned on - config.consider_all_requests_local = false + config.consider_all_requests_local = false config.action_controller.perform_caching = true # Disable Rails's static asset server (Apache or nginx will already do this) @@ -71,7 +71,7 @@ DanBarberPhoto::Application.configure do authentication: :plain, user_name: ENV["SENDGRID_USERNAME"], password: ENV["SENDGRID_PASSWORD"], - domain: "heroku.com", + domain: "heroku.com" } ActionMailer::Base.delivery_method = :smtp