gocardless_pro 2.41.1 → 2.41.2

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: 8e9725480d2dc2fc482dae8257c5f426aed030db8f58f51d074e9ddcdbe862de
4
- data.tar.gz: a5811ee88da9fc7ef0e05c22978d4a47b85c25ec99c85bacb03f61deaa1363e6
3
+ metadata.gz: e7f25ecfdfd84932a52514eee32983142bb7d3d9b3b578cd0ee547226c75ad01
4
+ data.tar.gz: 281155b55d074a8ab7206f76f026bcc7083159b3959ee3586dc0cbef01325ca2
5
5
  SHA512:
6
- metadata.gz: fd894ee1d6988315558c652f2f9bc7cb91f81cb2ffa12c3f379be7e6737f303d329e0056d8b1bc6f2e2f50688623cdfa23499bf5ceec4417b1ab16d33b9a5b6c
7
- data.tar.gz: 05f5e838a611c7ba37d406ccb66e2df50b6f1a30cae552c7fcdbf9b62b59c4b579609008e94b158197a46fd0b3a5fa9dcffd45971d79fb4d040b87989ba49aa9
6
+ metadata.gz: 63f430b9362d350783aee88ffa9ce6c5f9827a0217dad005243e5697e352419439f908bdfa96b7e7335fe4f993a00edbba31553b694a08186ea68fda62aa1900
7
+ data.tar.gz: 1e258511daa2a7f0d53aa3741dce6f577b107092a4da3b69b5e2c2896cf45b1f951c5fed26a62584ab874cbc8f1241e6764ff16535064db4dccfa10dec0a44f0
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 GoCardless
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -208,7 +208,7 @@ module GoCardlessPro
208
208
  'User-Agent' => "#{user_agent}",
209
209
  'Content-Type' => 'application/json',
210
210
  'GoCardless-Client-Library' => 'gocardless-pro-ruby',
211
- 'GoCardless-Client-Version' => '2.41.1',
211
+ 'GoCardless-Client-Version' => '2.41.2',
212
212
  },
213
213
  }
214
214
  end
@@ -3,5 +3,5 @@ end
3
3
 
4
4
  module GoCardlessPro
5
5
  # Current version of the GC gem
6
- VERSION = '2.41.1'
6
+ VERSION = '2.41.2'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gocardless_pro
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.41.1
4
+ version: 2.41.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - GoCardless
@@ -93,7 +93,7 @@ executables: []
93
93
  extensions: []
94
94
  extra_rdoc_files: []
95
95
  files:
96
- - Gemfile
96
+ - LICENSE.txt
97
97
  - README.md
98
98
  - lib/gocardless_pro.rb
99
99
  - lib/gocardless_pro/api_response.rb
data/Gemfile DELETED
@@ -1,10 +0,0 @@
1
- source 'https://rubygems.org'
2
- gemspec
3
-
4
- # We support both pre-1.x and post-1.x Faraday versions, but to ensure compatibility we
5
- # pin this gem against each in separate runs of CI, using the FARADAY_VERSION env var. For
6
- # more details on the values, see .github/workflows/tests.yml in the gocardless-pro-ruby
7
- # repository.
8
- if ENV.key?("FARADAY_VERSION")
9
- gem 'faraday', "~> #{ENV["FARADAY_VERSION"]}"
10
- end