paymentrails 0.2.13 → 0.2.14.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd7551b6de204f7991607d447b9241e4290311219fa06a37a8b5b8a9e6f096e9
4
- data.tar.gz: 90424f25c26b34259822b231fd2dd305a5e36abc34238c0cc9b35d8e050cee5e
3
+ metadata.gz: ac4eac5c7989b196cf2471d066598e570023d2c8ead35c8f02cedf47fa62de14
4
+ data.tar.gz: 3b086070e1366c8a7c5a328b53e2170aa507887e2c74ecb00ed6b934707ba11b
5
5
  SHA512:
6
- metadata.gz: ec224331246bb9918c8e4606d57498076482172fdf6f2b8ce40324e32c6e30c57eb5ac4a9a2827afb514c3622f61f41c8c40a353feea2c8ecbf838998fb306e6
7
- data.tar.gz: c7deb1a7472af9712d25f112719b51ce0b2562746a0103e45e147d0505e2a8eda5ace15ff8245591e5f9601618cc5b0eefff6fd4da4035ee825f318a0d159720
6
+ metadata.gz: 5064610dc4c21ec8d86139fc2b2019d812e27a954bde1774856845d6a88bb2f153970f404f01f20c95c3ad3113bb2370832caf8cf466414ac57b12fd60117b30
7
+ data.tar.gz: c1347a03831334119a037239d4a6ba0a2230417c4b42ae0b9289135d07322b5f9e701abc6fa7c7c3735889e883888cdd1ba81986431eb1f035c7c7bcfac35ed8
@@ -40,14 +40,12 @@ module PaymentRails
40
40
  )
41
41
  http.use_ssl = @config.useSsl?
42
42
 
43
- spec = Gem::Specification.load("paymentrails.gemspec")
44
-
45
43
  time = Time.now.to_i
46
44
  headers = {'X-PR-Timestamp': time.to_s,
47
45
  'Authorization': generate_authorization(time, endPoint, method, body),
48
46
  'Content-Type': 'application/json',
49
- 'Trolley-Source': "ruby-sdk_#{spec.version}"}
50
-
47
+ 'Trolley-Source': "ruby-sdk_#{::PaymentRails::VERSION}"}
48
+
51
49
  if method === "GET"
52
50
  request = Net::HTTP::Get.new(uri.request_uri, headers)
53
51
  elsif method === "POST"
@@ -1,5 +1,6 @@
1
1
  module PaymentRails
2
2
  module GatewayHelper
3
+ # rubocop:disable Lint/SuppressedException
3
4
  def loosely_hydrate_model(klass_instance, attributes)
4
5
  attributes.each do |k, v|
5
6
  begin
@@ -12,5 +13,6 @@ module PaymentRails
12
13
 
13
14
  klass_instance
14
15
  end
16
+ # rubocop:enable Lint/SuppressedException
15
17
  end
16
18
  end
data/lib/paymentrails.rb CHANGED
@@ -22,6 +22,8 @@ require 'paymentrails/Invoice'
22
22
  require 'paymentrails/InvoicePayment'
23
23
 
24
24
  module PaymentRails
25
+ VERSION = '0.2.14'.freeze
26
+
25
27
  def self.client(key, secret, environment = 'production', **optionals)
26
28
  Gateway.new(Configuration.new(key, secret, environment, **optionals))
27
29
  end
data/paymentrails.gemspec CHANGED
@@ -3,8 +3,8 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "paymentrails"
5
5
  s.summary = "Trolley Ruby SDK"
6
- s.description = "Ruby SDK for interacting with the Trolley API"
7
- s.version = '0.2.13'
6
+ s.description = "[DEPRECATED] Ruby SDK for interacting with the Trolley API, now deprecated. New Gem: https://rubygems.org/gems/trolley"
7
+ s.version = '0.2.14.1'
8
8
  s.homepage = 'https://trolley.com/'
9
9
  s.email = ['developer-tools@trolley.com']
10
10
  s.license = "MIT"
@@ -49,6 +49,7 @@ class RecipientTest < Test::Unit::TestCase
49
49
  assert_equal(recipient.status, 'archived')
50
50
  end
51
51
 
52
+ # rubocop:disable Metrics/MethodLength
52
53
  def test_account
53
54
  uuid = SecureRandom.uuid.to_s
54
55
  recipient = @client.recipient.create(
@@ -88,4 +89,5 @@ class RecipientTest < Test::Unit::TestCase
88
89
  accountList = @client.recipient_account.all(recipient.id)
89
90
  assert_equal(1, accountList.count)
90
91
  end
92
+ # rubocop:enable Metrics/MethodLength
91
93
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paymentrails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.13
4
+ version: 0.2.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - PaymentRails
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-10 00:00:00.000000000 Z
11
+ date: 2023-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv
@@ -66,7 +66,8 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '3'
69
- description: Ruby SDK for interacting with the Trolley API
69
+ description: "[DEPRECATED] Ruby SDK for interacting with the Trolley API, now deprecated.
70
+ New Gem: https://rubygems.org/gems/trolley"
70
71
  email:
71
72
  - developer-tools@trolley.com
72
73
  executables: []