From b79c91ea89582787d05511eb7f762311ee15d5e7 Mon Sep 17 00:00:00 2001 From: Martin Tajur Date: Tue, 5 May 2015 16:25:49 +0300 Subject: [PATCH] Change base_uri to use HTTPS instead of HTTP Pipedrive will deprecate HTTP API access on May 11, 2015. --- lib/pipedrive/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipedrive/base.rb b/lib/pipedrive/base.rb index 9a0adb0..7879d30 100644 --- a/lib/pipedrive/base.rb +++ b/lib/pipedrive/base.rb @@ -16,7 +16,7 @@ class Base < OpenStruct include HTTParty - base_uri 'api.pipedrive.com/v1' + base_uri 'https://api.pipedrive.com/v1' headers HEADERS format :json