docdata-order 2.3.0 → 2.4.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 +4 -4
- data/README.md +17 -1
- data/lib/docdata/order/client.rb +3 -1
- data/lib/docdata/order/version.rb +1 -1
- data/lib/docdata/order.rb +32 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9a63ec43c84dd6e9acb81e84b836268da56d7fbf632e333a600b0978c9d4fb2
|
|
4
|
+
data.tar.gz: b9c8c66792a7de46fe2bbc367e3d26d2b8bd90a5fb7b05cbcc58a6cc059bbbd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d13d9151e9025a9c9e540e84281179f804190bbc0e99d5eddff65f117787ad14c28fc78fcc53da3d40f58bffea54ec4f7690fb5071e0b9ed8bc133d3a41b519f
|
|
7
|
+
data.tar.gz: f595a0273c6d4839aee1c2ee8c1cd56f7a76d7feff8402078941481cf899d4766b4553c965c0b029b6f74ea3a3c61605610d0ab374825e616f03b2350de0e3df
|
data/README.md
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/docdata-order)
|
|
4
4
|
[](https://github.com/KentaaNL/docdata-order/actions)
|
|
5
|
-
[](https://github.com/KentaaNL/docdata-order/actions/workflows/github-code-scanning/codeql)
|
|
6
6
|
|
|
7
7
|
Docdata::Order is a Ruby client for the Docdata Order API version 1.3.
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
10
10
|
|
|
11
11
|
- [Installation](#installation)
|
|
12
|
+
- [Configuration](#configuration)
|
|
12
13
|
- [Usage](#usage)
|
|
13
14
|
- [Initialization](#initialization)
|
|
14
15
|
- [Subject merchant](#subject-merchant)
|
|
@@ -41,6 +42,21 @@ Or install it yourself as:
|
|
|
41
42
|
|
|
42
43
|
$ gem install docdata-order
|
|
43
44
|
|
|
45
|
+
## Configuration
|
|
46
|
+
|
|
47
|
+
Docdata::Order provides a global configuration object that allows you to customize logger output and HTTP timeouts. You can set these options via the `Docdata::Order.configure` block:
|
|
48
|
+
|
|
49
|
+
```ruby
|
|
50
|
+
Docdata::Order.configure do |config|
|
|
51
|
+
# Set a global logger for Docdata::Order output
|
|
52
|
+
config.logger = Logger.new($stdout)
|
|
53
|
+
|
|
54
|
+
# Set Net::HTTP timeout values (in seconds)
|
|
55
|
+
config.open_timeout = 30
|
|
56
|
+
config.read_timeout = 30
|
|
57
|
+
end
|
|
58
|
+
```
|
|
59
|
+
|
|
44
60
|
## Usage
|
|
45
61
|
|
|
46
62
|
### Initialization
|
data/lib/docdata/order/client.rb
CHANGED
|
@@ -62,7 +62,9 @@ module Docdata
|
|
|
62
62
|
|
|
63
63
|
params.merge!(log: true, log_level: :debug, pretty_print_xml: true) if @options[:debug]
|
|
64
64
|
|
|
65
|
-
params[:
|
|
65
|
+
params[:open_timeout] = Docdata::Order.config.open_timeout
|
|
66
|
+
params[:read_timeout] = Docdata::Order.config.read_timeout
|
|
67
|
+
params[:logger] = Docdata::Order.config.logger
|
|
66
68
|
|
|
67
69
|
Savon.client(params)
|
|
68
70
|
end
|
data/lib/docdata/order.rb
CHANGED
|
@@ -9,3 +9,35 @@ require 'docdata/order/request'
|
|
|
9
9
|
require 'docdata/order/response'
|
|
10
10
|
require 'docdata/order/urls'
|
|
11
11
|
require 'docdata/order/version'
|
|
12
|
+
|
|
13
|
+
require 'logger'
|
|
14
|
+
|
|
15
|
+
module Docdata
|
|
16
|
+
# :nodoc:
|
|
17
|
+
module Order
|
|
18
|
+
# Holds the global Docdata::Order configuration.
|
|
19
|
+
class Configuration
|
|
20
|
+
attr_accessor :logger, :open_timeout, :read_timeout
|
|
21
|
+
|
|
22
|
+
def initialize
|
|
23
|
+
@logger = Rails.logger if defined?(Rails)
|
|
24
|
+
@open_timeout = 30
|
|
25
|
+
@read_timeout = 30
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
@config = Configuration.new
|
|
30
|
+
|
|
31
|
+
class << self
|
|
32
|
+
attr_reader :config
|
|
33
|
+
|
|
34
|
+
def configure
|
|
35
|
+
yield(@config)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def reset!
|
|
39
|
+
@config = Configuration.new
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: docdata-order
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kentaa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -132,14 +132,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
132
132
|
requirements:
|
|
133
133
|
- - ">="
|
|
134
134
|
- !ruby/object:Gem::Version
|
|
135
|
-
version: 3.
|
|
135
|
+
version: 3.2.0
|
|
136
136
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
137
|
requirements:
|
|
138
138
|
- - ">="
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
|
-
rubygems_version: 3.
|
|
142
|
+
rubygems_version: 3.4.19
|
|
143
143
|
signing_key:
|
|
144
144
|
specification_version: 4
|
|
145
145
|
summary: Ruby client for the Docdata Order API
|