gopay-ruby 0.4.0.alpha → 0.4.1
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/.travis.yml +1 -1
- data/README.md +1 -1
- data/gopay.gemspec +1 -1
- data/lib/gopay/client.rb +3 -9
- data/lib/gopay/version.rb +2 -2
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0be3ba6d00f14d1ae33b8f485c222e76efffc26631dddfaec585075f19ba01fe
|
4
|
+
data.tar.gz: 9f150d6254c1a86652f544f9620626c1f9be54913072efee71ea16bba95b612e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b2052e1047cd933e7d2bf40aef6b61d210a411535110a76e85214a1d9c0ea57d92e147e4a30da70b7161dc744c19089ab157a24159bf184f680fd2f1dacdbaa
|
7
|
+
data.tar.gz: 4b5a7ad45cf929f0b40f2a281f91bf5d3c3c0569bad17b8b512dc5fdf0cc65304246a4f3b0935dbc709214982ff09d9ac58dbdf341ba35f02c7ac84c7418fd7f
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# gopay-ruby
|
2
2
|
|
3
3
|
[](http://badge.fury.io/rb/gopay-ruby)
|
4
|
-
[](https://travis-ci.
|
4
|
+
[](https://travis-ci.com/PrimeHammer/gopay-ruby)
|
5
5
|
[](https://codeclimate.com/github/PrimeHammer/gopay-ruby)
|
6
6
|
[](https://coveralls.io/github/PrimeHammer/gopay-ruby?branch=master)
|
7
7
|
|
data/gopay.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = %q{Unofficial wrapper for GoPay REST API}
|
12
12
|
spec.description = %q{Unofficial wrapper for GoPay REST API}
|
13
13
|
spec.homepage = "https://github.com/PrimeHammer/gopay-ruby"
|
14
|
-
spec.required_ruby_version = '>= 2.
|
14
|
+
spec.required_ruby_version = '>= 2.5'
|
15
15
|
spec.license = "MIT"
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
17
|
spec.bindir = "exe"
|
data/lib/gopay/client.rb
CHANGED
@@ -9,9 +9,7 @@ module GoPay
|
|
9
9
|
def request(method, path, body_parameters: {})
|
10
10
|
token = token get_token_scope(method, path)
|
11
11
|
content_type = get_content_type(path)
|
12
|
-
|
13
|
-
body_parameters = content_type == 'application/json' ? body_parameters.to_json : from_hash_to_query(body_parameters)
|
14
|
-
|
12
|
+
body_parameters = content_type == 'application/json' ? body_parameters.to_json : body_parameters
|
15
13
|
begin
|
16
14
|
response = RestClient::Request.execute(method: method, url: @config[:gate]+path, payload: body_parameters, headers: { "Accept" => "application/json", "Content-Type" => content_type, "Authorization" => "Bearer #{token}" })
|
17
15
|
rescue RestClient::ExceptionWithResponse => e
|
@@ -58,10 +56,6 @@ module GoPay
|
|
58
56
|
})
|
59
57
|
JSON.parse(response.body)["access_token"]
|
60
58
|
end
|
61
|
-
|
62
|
-
def from_hash_to_query(hash)
|
63
|
-
hash = hash == "{}" ? "{}" : URI.escape(hash.collect { |key,val| "#{CGI.escape(key.to_s)}=#{CGI.escape(val.to_s)}" }.join('&'))
|
64
|
-
return hash
|
65
|
-
end
|
59
|
+
|
66
60
|
end
|
67
|
-
end
|
61
|
+
end
|
data/lib/gopay/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gopay-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Hrachovy & Ondrej Zadnik
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -72,15 +72,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '2.
|
75
|
+
version: '2.5'
|
76
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
77
|
requirements:
|
78
|
-
- - "
|
78
|
+
- - ">="
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
80
|
+
version: '0'
|
81
81
|
requirements: []
|
82
|
-
|
83
|
-
rubygems_version: 2.7.8
|
82
|
+
rubygems_version: 3.1.4
|
84
83
|
signing_key:
|
85
84
|
specification_version: 4
|
86
85
|
summary: Unofficial wrapper for GoPay REST API
|