tipalti-ruby 0.5.2 → 0.5.3

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: 39a29f58280322b6afc67964d17dfdb0c5748c8ab7db89db85023cbfce6f19c1
4
- data.tar.gz: c4efd6e0f34af1feb21f41582acfa942d1a904a260b7f568ccba48f6f79b9091
3
+ metadata.gz: ee135eab0617e83e2457718756d5f5b4ed9da1d71425ff643677773054ef7760
4
+ data.tar.gz: a87308eaa18e4bf4ec763c0c34a12876cdf11ecf32850994d5f7374744b711a1
5
5
  SHA512:
6
- metadata.gz: dd72e6e2b4e4f5bb7662fdca94277175920219628b510c556b49d10766de9229c70fe45f241cf97931b0c7bc95f70ad8d40cb003cc55a6fcac472701c40a5259
7
- data.tar.gz: 56b59f8156f9ab4c9bc4b6117808de3875dcefb5c40f5101f49fd95a85bf041eda7b1e2a1a477eeadd5acb3f449a2eb14cecb700ad780302df6a0ab46a925a6b
6
+ metadata.gz: d46df6f92c47edc9f89224c14c64542b6d327389994d41244b1ea1d28320a74569a60fd4e4f3515dbef0784ebfa9a099abc1ee6f68ff1e256e10f23a1286c761
7
+ data.tar.gz: 2beb9ae3e881d7dc8144a4bff9b6f6ccc3dde0f5283df934ee7d66b78e0a0c47c9493b32b3557b3abeda537c831ac2113b965f02fb2d4380ff070e89a25683c4
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- gem "faraday", "~> 2.0"
7
+ gem "faraday", ">= 2.0.1"
8
8
  gem "oauth2", "~> 2.0"
9
9
 
10
10
  group :development, :test do
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tipalti-ruby (0.5.2)
5
- faraday (~> 2.0)
4
+ tipalti-ruby (0.5.3)
5
+ faraday (>= 2.0.1)
6
6
  oauth2 (~> 2.0)
7
7
 
8
8
  GEM
@@ -17,18 +17,16 @@ GEM
17
17
  bigdecimal
18
18
  rexml
19
19
  diff-lcs (1.5.1)
20
- faraday (2.9.0)
21
- faraday-net_http (>= 2.0, < 3.2)
22
- faraday-net_http (3.1.0)
23
- net-http
20
+ faraday (2.0.1)
21
+ faraday-net_http (~> 2.0)
22
+ ruby2_keywords (>= 0.0.4)
23
+ faraday-net_http (2.1.0)
24
24
  hashdiff (1.1.0)
25
25
  hashie (5.0.0)
26
26
  json (2.7.1)
27
27
  jwt (2.8.1)
28
28
  base64
29
29
  multi_xml (0.6.0)
30
- net-http (0.4.1)
31
- uri
32
30
  oauth2 (2.0.9)
33
31
  faraday (>= 0.17.3, < 3.0)
34
32
  jwt (>= 1.0, < 3.0)
@@ -83,11 +81,11 @@ GEM
83
81
  rubocop-capybara (~> 2.17)
84
82
  rubocop-factory_bot (~> 2.22)
85
83
  ruby-progressbar (1.13.0)
84
+ ruby2_keywords (0.0.5)
86
85
  snaky_hash (2.0.1)
87
86
  hashie
88
87
  version_gem (~> 1.1, >= 1.1.1)
89
88
  unicode-display_width (2.5.0)
90
- uri (0.13.0)
91
89
  version_gem (1.1.3)
92
90
  webmock (3.18.1)
93
91
  addressable (>= 2.8.0)
@@ -99,7 +97,7 @@ PLATFORMS
99
97
  x86_64-linux
100
98
 
101
99
  DEPENDENCIES
102
- faraday (~> 2.0)
100
+ faraday (>= 2.0.1)
103
101
  oauth2 (~> 2.0)
104
102
  rake (~> 13.0.6)
105
103
  rspec (~> 3.12.0)
@@ -53,10 +53,10 @@ module Tipalti
53
53
 
54
54
  def connection
55
55
  @connection ||= Faraday.new(url: @url) do |c|
56
- c.adapter :net_http
57
56
  c.request :json, content_type: /\bjson$/
58
57
  c.response :json, content_type: /\bjson$/
59
58
  c.request :url_encoded, content_type: /x-www-form-urlencoded/
59
+ c.adapter Faraday.default_adapter
60
60
  end
61
61
  end
62
62
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tipalti
4
- VERSION = "0.5.2"
4
+ VERSION = "0.5.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tipalti-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordan Ell
@@ -14,16 +14,16 @@ dependencies:
14
14
  name: faraday
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '2.0'
19
+ version: 2.0.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '2.0'
26
+ version: 2.0.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: oauth2
29
29
  requirement: !ruby/object:Gem::Requirement