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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c5d871fa56f9ff5b430c311521f6baf459163e70002a4bd55e9de4a7890a11e
4
- data.tar.gz: 8fe34a47178bc633ae2c00ffb88014239c9409f31016a87653df0b16220707e7
3
+ metadata.gz: 0be3ba6d00f14d1ae33b8f485c222e76efffc26631dddfaec585075f19ba01fe
4
+ data.tar.gz: 9f150d6254c1a86652f544f9620626c1f9be54913072efee71ea16bba95b612e
5
5
  SHA512:
6
- metadata.gz: 7f1e7623ad8f437d3aa18ffe16d16a8d9ffeb49060055ec2e80a964c858f836a61ae8a1fb931a89958cee94476caaf560937bce3155d656d36c053d5c7e544c5
7
- data.tar.gz: 21bc88b460bd2bb89e909b8a2ddd7e50179480ac180044618f4c3f50d90e02b643e2c8efa030340d73dcd977b34574ece3791a9dcfa4b941f3e0d0112edec5b2
6
+ metadata.gz: 1b2052e1047cd933e7d2bf40aef6b61d210a411535110a76e85214a1d9c0ea57d92e147e4a30da70b7161dc744c19089ab157a24159bf184f680fd2f1dacdbaa
7
+ data.tar.gz: 4b5a7ad45cf929f0b40f2a281f91bf5d3c3c0569bad17b8b512dc5fdf0cc65304246a4f3b0935dbc709214982ff09d9ac58dbdf341ba35f02c7ac84c7418fd7f
@@ -3,9 +3,9 @@ cache: bundler
3
3
  language: ruby
4
4
 
5
5
  rvm:
6
- - 2.4
7
6
  - 2.5
8
7
  - 2.6
8
+ - 2.7
9
9
  - ruby-head
10
10
 
11
11
  sudo: false
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # gopay-ruby
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/gopay-ruby.png)](http://badge.fury.io/rb/gopay-ruby)
4
- [![Build Status](https://travis-ci.org/PrimeHammer/gopay-ruby.png?branch=master)](https://travis-ci.org/PrimeHammer/gopay-ruby)
4
+ [![Build Status](https://travis-ci.org/PrimeHammer/gopay-ruby.png?branch=master)](https://travis-ci.com/PrimeHammer/gopay-ruby)
5
5
  [![Code Climate](https://codeclimate.com/github/PrimeHammer/gopay-ruby.png)](https://codeclimate.com/github/PrimeHammer/gopay-ruby)
6
6
  [![Coverage Status](https://coveralls.io/repos/github/PrimeHammer/gopay-ruby/badge.svg?branch=master)](https://coveralls.io/github/PrimeHammer/gopay-ruby?branch=master)
7
7
 
@@ -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.4'
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"
@@ -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
@@ -2,11 +2,11 @@ module GoPay
2
2
  class Version
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- PATCH = 0
5
+ PATCH = 1
6
6
 
7
7
  class << self
8
8
  def to_s
9
- [MAJOR, MINOR, PATCH].compact.join('.') + '.alpha'
9
+ [MAJOR, MINOR, PATCH].compact.join('.')
10
10
  end
11
11
  end
12
12
  end
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.0.alpha
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: 2019-10-19 00:00:00.000000000 Z
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.4'
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: 1.3.1
80
+ version: '0'
81
81
  requirements: []
82
- rubyforge_project:
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