bitzlato 0.1.7 → 0.1.8
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/Gemfile.lock +2 -2
- data/lib/bitzlato/client.rb +3 -1
- data/lib/bitzlato/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f7d7f7beafdecadd6bd2400c04a7961c8d502f4878d05cf9006cce4ee15c19c
|
4
|
+
data.tar.gz: c1df825aa3a3d40891c4f48e4c4d44ceb0a341527c6f2d354fe04a3de902ca25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f72fd5d74a97800162e8dcc639c415ac7a3e585d9cdf3259bb6ed656d4bac1efdd202cc72f3e92a6c0784e4e12f3de116ba2be5b8b293639440832afdd9ad22e
|
7
|
+
data.tar.gz: 5208f0055f0f42cf38ac847d8b1b01ff2f61247411130d2635f1db97a60fe8ea57e3557ec7a44ba0b863b9746e6bee7ae79f22690692923db4e62a2c1791def8
|
data/Gemfile.lock
CHANGED
data/lib/bitzlato/client.rb
CHANGED
@@ -9,6 +9,8 @@ module Bitzlato
|
|
9
9
|
class Error < StandardError; end
|
10
10
|
WrongResponse = Class.new Error
|
11
11
|
|
12
|
+
attr_reader :uid, :email, :jwk, :home_url
|
13
|
+
|
12
14
|
def initialize(home_url: , key: , logger: false, email: nil, uid: nil, adapter: nil)
|
13
15
|
raise ArgumentError, 'email or uid must be presented' if uid.nil? && email.nil?
|
14
16
|
@email = email
|
@@ -35,7 +37,7 @@ module Bitzlato
|
|
35
37
|
|
36
38
|
def parse_response(response)
|
37
39
|
raise WrongResponse, "Wrong response status (#{response.status})" unless response.success?
|
38
|
-
return nil if response.body.
|
40
|
+
return nil if response.body.empty?
|
39
41
|
raise WrongResponse, "Wrong content type (#{response['content-type']})" if response['content-type'] != 'application/json'
|
40
42
|
JSON.parse response.body
|
41
43
|
end
|
data/lib/bitzlato/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitzlato
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danil Pismenny
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -98,7 +98,7 @@ metadata:
|
|
98
98
|
homepage_uri: https://github.com/finfex/bitzlato
|
99
99
|
source_code_uri: https://github.com/finfex/bitzlato
|
100
100
|
changelog_uri: https://github.com/finfex/bitzlato/blob/main/CHANGELOG.md
|
101
|
-
post_install_message:
|
101
|
+
post_install_message:
|
102
102
|
rdoc_options: []
|
103
103
|
require_paths:
|
104
104
|
- lib
|
@@ -113,8 +113,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
113
|
- !ruby/object:Gem::Version
|
114
114
|
version: '0'
|
115
115
|
requirements: []
|
116
|
-
rubygems_version: 3.
|
117
|
-
signing_key:
|
116
|
+
rubygems_version: 3.2.15
|
117
|
+
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: Ruby HTTP API client library and cli for bitzlato.bz
|
120
120
|
test_files: []
|