summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/environments/development.rb6
1 files 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