We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 784c24a commit 5fe4445Copy full SHA for 5fe4445
2 files changed
lib/drip/client.rb
@@ -38,9 +38,6 @@ class Client # rubocop:disable Metrics/ClassLength
38
include Workflows
39
include WorkflowTriggers
40
41
- REDIRECT_LIMIT = 10
42
- private_constant :REDIRECT_LIMIT
43
-
44
Drip::Client::Configuration::CONFIGURATION_FIELDS.each do |config_key|
45
define_method(config_key) do
46
@config.public_send(config_key)
lib/drip/client/http_client.rb
@@ -1,6 +1,9 @@
1
module Drip
2
class Client
3
class HTTPClient
4
+ REDIRECT_LIMIT = 10
5
+ private_constant :REDIRECT_LIMIT
6
+
7
def initialize(config)
8
@config = config
9
end
0 commit comments