From 40b2f0f7d927ed1bf6f0d38a91361f8955593d26 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 21 Mar 2013 17:39:39 -0700 Subject: [PATCH] update better errors allow me to pass a special IP address in dev mode so I can debug ( set TRUSTED_IP ) --- Gemfile.lock | 4 ++-- config/environments/development.rb | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 28784de7cfe..951dc9b5155 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -115,7 +115,7 @@ GEM arel (3.0.2) barber (0.3.0) execjs - better_errors (0.5.0) + better_errors (0.7.2) coderay (>= 1.0.0) erubis (>= 2.6.6) binding_of_caller (0.7.1) @@ -145,7 +145,7 @@ GEM ffi (~> 1.0, >= 1.0.6) clockwork (0.4.1) tzinfo - coderay (1.0.8) + coderay (1.0.9) coffee-rails (3.2.2) coffee-script (>= 2.2.0) railties (~> 3.2.0) diff --git a/config/environments/development.rb b/config/environments/development.rb index d95edcae476..01fa3e6547a 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -36,6 +36,7 @@ Discourse::Application.configure do config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 } config.action_mailer.raise_delivery_errors = true - + + BetterErrors::Middleware.allow_ip! ENV['TRUSTED_IP'] if ENV['TRUSTED_IP'] end