fastlane-plugin-gs_versioning 0.3.5 → 0.3.6

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
  SHA1:
3
- metadata.gz: 8d9784144ee5ee08870864e5d4e79422bfe0a502
4
- data.tar.gz: 492b9b125966b71fc0d8f4173bfa4763e8f23e22
3
+ metadata.gz: 8a890efca4cd4bce5da832b05c00ae608059fb26
4
+ data.tar.gz: e0a6f6768fb31e575511820b74f0a9a578c79020
5
5
  SHA512:
6
- metadata.gz: 60289360295ccfab40183b150ba7db94ac523814fbc4d99590d31bdf3538639e887ca9aac38f6caf6d67b6aa5f054d4d1e96fcb22c440abf6784a75f496a13e9
7
- data.tar.gz: c42324c07a7bae1efbae2c6874cc55f7a2d395166a639c989d8d5896eb8e354d68af50d33d479f73a0b241fdea1e242ff25ba7743f5f5680fea495d4c37f43f2
6
+ metadata.gz: 4c5b97d5a43a8e85d676382aad9b4be077cbe54ba539dfbfb2b1abbd86a68b0116b8220d4ce17fd34c041a7720ddd8f053730d0216e8dcddf2470eb623c75b12
7
+ data.tar.gz: ee375f2a149d81e02890b61a18540544edd47098179df668130fe0574f75915b3e40531bfec58c0d4ff83b42249d98c9434671749acfb88e63dae9df24f594a2
@@ -97,7 +97,7 @@ class GSVersionApiProvider
97
97
 
98
98
  def self.getVersions()
99
99
  url = 'versions'
100
- response = client.request(:get) do |req|
100
+ response = @@client.request(:get) do |req|
101
101
  req.url url
102
102
  req.headers['Content-Type'] = 'application/json'
103
103
  end
@@ -105,7 +105,7 @@ class GSVersionApiProvider
105
105
  if response.success?
106
106
  GSVersionValue.parseBackendResponse(response.body)
107
107
  else
108
- raise(client.class.hostname + url + ' ' + response.status.to_s + ' ' + response.body['message'])
108
+ raise(@@client.class.hostname + url + ' ' + response.status.to_s + ' ' + response.body['message'])
109
109
  end
110
110
  end
111
111
 
@@ -118,7 +118,7 @@ class GSVersionApiProvider
118
118
  'rcVersionName' => newValue['rc'],
119
119
  'releaseVersionName' => newValue['release']
120
120
  }
121
- response = client.request(:patch) do |req|
121
+ response = @@client.request(:patch) do |req|
122
122
  req.url url
123
123
  req.body = json_params
124
124
  req.headers['Content-Type'] = 'application/json'
@@ -127,7 +127,7 @@ class GSVersionApiProvider
127
127
  if response.success?
128
128
  return response
129
129
  else
130
- raise(client.class.hostname + url + ' ' + response.status.to_s + ' ' + response.body['message'])
130
+ raise(@@client.class.hostname + url + ' ' + response.status.to_s + ' ' + response.body['message'])
131
131
  end
132
132
  end
133
133
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GsVersioning
3
- VERSION = "0.3.5"
3
+ VERSION = "0.3.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-gs_versioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - SAVeselovskiy