fastbound-ruby 1.0.2 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 07d5f8ff0684a7ff898e3d25c5ac2980f319e7940c303244795bf6d8c2c498de
4
- data.tar.gz: ea84918333aec484804e0cfd510d161c3e08df9d9c7938203b71b6a4213cb4e3
3
+ metadata.gz: f29a89f9718d0d0f6f417247ea7979fb5ec031114dd716cc6b2225dd65f7866e
4
+ data.tar.gz: 61e1274520ce593d2fe894c7c3143baf15c59ceaf7bcc927348456011ae39495
5
5
  SHA512:
6
- metadata.gz: 608d4a6da38c3d79f7385e0636ec549279e2c88ff609d2d8a56fd7b93047cf09575692063ee5c94d0c0f01b682f05689219e99a57fac69726363e51384cc42fa
7
- data.tar.gz: f4cadd891d23f711c22ff7ae314e5280ecbc2d82d2cf5563f1ca7632dc59499ddc390d84f1bf2e046bee469ce664d6c5a1f715dbe45772b15d082057228607af
6
+ metadata.gz: 11c243758896042924301540e8abc880719d6369a0919cbd2a5bfe239c31746452fb5b91407ea2c831fbdf97391982e482392f82f520581fcb06941f582fa2af
7
+ data.tar.gz: dfe273aea728edb15d3f090aa91baab9544dcd1a50a20b763598a7e9cfe88b731f85c850a275dad24aaa6ab6a6e90808b7c397c4d3280e8b5b86b4f91f06cd70
@@ -64,6 +64,7 @@ module FastBound
64
64
  uri = URI(request.path)
65
65
 
66
66
  response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|
67
+ http.set_debug_output($stdout) if FastBound.config.full_debug?
67
68
  http.request(request)
68
69
  end
69
70
 
@@ -1,3 +1,3 @@
1
1
  module FastBound
2
- VERSION = "1.0.2"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -15,4 +15,25 @@ require 'fastbound-ruby/smart_list'
15
15
  require 'fastbound-ruby/webhook'
16
16
 
17
17
  module FastBound
18
+ class << self
19
+ attr_accessor :config
20
+ end
21
+
22
+ def self.config
23
+ @config ||= Configuration.new
24
+ end
25
+
26
+ def self.configure
27
+ yield(config)
28
+ end
29
+
30
+ class Configuration
31
+ attr_accessor :full_debug
32
+
33
+ alias :full_debug? :full_debug
34
+
35
+ def initialize
36
+ @full_debug ||= false
37
+ end
38
+ end
18
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastbound-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeffrey Dill
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-16 00:00:00.000000000 Z
11
+ date: 2022-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler