paymentrails 0.2.12 → 0.2.14

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: 3bbb1c430769eb613279810f4d9d3149ebf96d7a58044cc75df25ad1b853ebc8
4
- data.tar.gz: 28b10f2f0cc5c024acd68b4bb5bb9351f319f64c54eeb5688a8e5474029c9350
3
+ metadata.gz: b676383829c92526bd5219d950b27dd487931889640b765b74c4f36a4e4287d4
4
+ data.tar.gz: bc8ccdd98fdf25511a27b94b6e9ae119a5235adfd7162640e33c531f28f8a8a4
5
5
  SHA512:
6
- metadata.gz: 96203b85e11a017b37afda30daaee8a66ab332c33e901ab7d4bf1106188e732879fd89e648b4ed4044cd8328dbceb03ffda15b2f95a04f5592b75eebef679f37
7
- data.tar.gz: b76bc224610a3c3827f290e777c1914b4fecfac3c0fe57a64233342fa9d28793b72347974f4231f8fe86b99345e0e53eb9e7f481e0a7566e7c07be526b06f253
6
+ metadata.gz: f4246643bd0f5a200ff2e967c13a020b81dc4eb71728f61a77c333849a6dd09c04585d121541b6be7de86078573999250b2769eedc844d32ad65cfc4191cec96
7
+ data.tar.gz: 8633b9e0e9b8f04ab9c5c21be24c129cea6a5b526b153839e26245c01d4fb2eae9836e23fc20d5da8552aa51b3b9fc0b22e1020ae865be2b2de2197aee96425f
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017 Payment Rails, Inc.
1
+ Copyright (c) 2017 Trolley, Inc.
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person
4
4
  obtaining a copy of this software and associated documentation
@@ -4,6 +4,7 @@ require 'net/http'
4
4
  require 'openssl'
5
5
  require 'uri'
6
6
  require 'json'
7
+ require "rubygems"
7
8
 
8
9
  module PaymentRails
9
10
  class Client
@@ -42,7 +43,8 @@ module PaymentRails
42
43
  time = Time.now.to_i
43
44
  headers = {'X-PR-Timestamp': time.to_s,
44
45
  'Authorization': generate_authorization(time, endPoint, method, body),
45
- 'Content-Type': 'application/json'}
46
+ 'Content-Type': 'application/json',
47
+ 'Trolley-Source': "ruby-sdk_#{::PaymentRails::VERSION}"}
46
48
 
47
49
  if method === "GET"
48
50
  request = Net::HTTP::Get.new(uri.request_uri, headers)
@@ -19,13 +19,13 @@ module PaymentRails
19
19
  def apiBase
20
20
  case environment
21
21
  when 'production'
22
- 'https://api.paymentrails.com'
22
+ 'https://api.trolley.com'
23
23
  when 'development'
24
24
  'https://api.railz.io'
25
25
  when 'integration'
26
26
  'http://api.local.dev:3000'
27
27
  else
28
- 'https://api.paymentrails.com'
28
+ 'https://api.trolley.com'
29
29
  end
30
30
  end
31
31
 
@@ -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
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
4
4
  s.name = "paymentrails"
5
5
  s.summary = "Trolley Ruby SDK"
6
6
  s.description = "Ruby SDK for interacting with the Trolley API"
7
- s.version = '0.2.12'
7
+ s.version = '0.2.14'
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(
@@ -67,6 +68,7 @@ class RecipientTest < Test::Unit::TestCase
67
68
  assert_equal(recipient.firstName, 'Tom')
68
69
  assert_equal(recipient.lastName, 'Jones')
69
70
  assert_not_nil(recipient.id)
71
+ assert_true(recipient.routeMinimum.to_i >= 0)
70
72
 
71
73
  account = @client.recipient_account.create(recipient.id, type: 'bank-transfer', currency: 'EUR', country: 'DE', iban: 'DE89 3704 0044 0532 0130 00')
72
74
  assert_not_nil(account)
@@ -87,4 +89,5 @@ class RecipientTest < Test::Unit::TestCase
87
89
  accountList = @client.recipient_account.all(recipient.id)
88
90
  assert_equal(1, accountList.count)
89
91
  end
92
+ # rubocop:enable Metrics/MethodLength
90
93
  end
@@ -22,9 +22,9 @@ class ConfigurationTest < Test::Unit::TestCase
22
22
 
23
23
  def test_api_base
24
24
  assert_equal 'http://api.local.dev:3000', PaymentRails::Configuration.new('key', 'secret', 'integration').apiBase
25
- assert_equal 'https://api.paymentrails.com', PaymentRails::Configuration.new('key', 'secret', 'production').apiBase
25
+ assert_equal 'https://api.trolley.com', PaymentRails::Configuration.new('key', 'secret', 'production').apiBase
26
26
  assert_equal 'https://api.railz.io', PaymentRails::Configuration.new('key', 'secret', 'development').apiBase
27
- assert_equal 'https://api.paymentrails.com', PaymentRails::Configuration.new('key', 'secret', 'non_standard_environment').apiBase
27
+ assert_equal 'https://api.trolley.com', PaymentRails::Configuration.new('key', 'secret', 'non_standard_environment').apiBase
28
28
  end
29
29
 
30
30
  def test_use_ssl?
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.12
4
+ version: 0.2.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - PaymentRails
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-20 00:00:00.000000000 Z
11
+ date: 2023-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  requirements: []
127
- rubygems_version: 3.1.2
127
+ rubygems_version: 3.2.3
128
128
  signing_key:
129
129
  specification_version: 4
130
130
  summary: Trolley Ruby SDK