wrapi 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/wrapi/configuration.rb +0 -6
- data/lib/wrapi/connection.rb +2 -1
- data/lib/wrapi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98ca96c390b3ef729370d1237e095eb1436c326d4acd16600e3343f96f7499b9
|
4
|
+
data.tar.gz: cf29c70d73b05dfb7dac0e9d4e1098bbf573b76f9f19de1259c4b9a0f1835897
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95c0e427ccdb8f4a1a9147e15122bbba3891556149bd1431c2668cce3038537e5f921b943a42636786aa795aecc1fdfe220ed0ed337f74e8066cd634cc9f2ec9
|
7
|
+
data.tar.gz: c3f42e63e01ba136bb47a71cf396b4a1f34ca3c39d8c26c86018bfa880d60f624bc8a1e1d8aa8dfbe01ae001c98341445501d71ed90a4e2f439675cd41749731
|
data/CHANGELOG.md
CHANGED
data/lib/wrapi/configuration.rb
CHANGED
@@ -24,11 +24,6 @@ module WrAPI
|
|
24
24
|
# By default, don't set any connection options
|
25
25
|
DEFAULT_CONNECTION_OPTIONS = {}
|
26
26
|
|
27
|
-
# The endpoint that will be used to connect if none is set
|
28
|
-
#
|
29
|
-
# @note There is no reason to use any other endpoint at this time
|
30
|
-
DEFAULT_ENDPOINT = 'https://api.com'.freeze
|
31
|
-
|
32
27
|
# The response format appended to the path and sent in the 'Accept' header if none is set
|
33
28
|
#
|
34
29
|
# @note JSON is the only available format at this time
|
@@ -75,7 +70,6 @@ module WrAPI
|
|
75
70
|
|
76
71
|
self.logger = nil
|
77
72
|
self.connection_options = DEFAULT_CONNECTION_OPTIONS
|
78
|
-
self.endpoint = DEFAULT_ENDPOINT
|
79
73
|
self.format = DEFAULT_FORMAT
|
80
74
|
self.page_size = DEFAULT_PAGE_SIZE
|
81
75
|
self.user_agent = DEFAULT_USER_AGENT
|
data/lib/wrapi/connection.rb
CHANGED
@@ -10,8 +10,9 @@ module WrAPI
|
|
10
10
|
private
|
11
11
|
|
12
12
|
def connection
|
13
|
-
|
13
|
+
raise! ArgumentError, "Option for endpoint is not defined" unless endpoint
|
14
14
|
|
15
|
+
options = setup_options
|
15
16
|
Faraday::Connection.new(options) do |connection|
|
16
17
|
connection.use Faraday::Response::RaiseError
|
17
18
|
connection.adapter Faraday.default_adapter
|
data/lib/wrapi/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wrapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Janco Tanis
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|