From 8c087dc69174a5fbd9390b5c3a795fd0f56f6ed2 Mon Sep 17 00:00:00 2001 From: elijah Date: Sun, 19 Jan 2014 21:26:03 -0800 Subject: Redefine constant in a way that does not print out "warning: already initialized constant VERIFY_PEER" --- config/environments/development.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index adde3ba..7b06c81 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -29,7 +29,7 @@ LeapWeb::Application.configure do # Expands the lines which load the assets config.assets.debug = true - # hacky, but otherwise getting certificate error, and doesn't seem dangerous in development mode: - OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE - + # super hacky, but otherwise getting certificate error, and doesn't seem dangerous in development mode: + OpenSSL::SSL.send(:remove_const, "VERIFY_PEER") + OpenSSL::SSL.const_set("VERIFY_PEER", OpenSSL::SSL::VERIFY_NONE) end -- cgit v1.2.3