fastlane-plugin-tpa 2.0.1 → 2.0.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6ddea70b6dc2fd2a890aa5c628916ca35ce639d
|
|
4
|
+
data.tar.gz: '08e42ea5899d14a1b1e617da442de890b1527585'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f80d1e466dc405e9a9b1181dc8a7ca67c9161c4e9de80004421a2b27616e828939ee8f26260469d9d952e4625f503e56e2459f2609d61abb509c61461e61f99
|
|
7
|
+
data.tar.gz: 4f1bd3ac157c80fef95a06b209d6161244f06c4c891659481f3878bb07c375d85ae5ac35881d6fb98058b144861b40eaf1fc8588de226df0181d4aebb169cdb7
|
|
@@ -32,8 +32,11 @@ module Fastlane
|
|
|
32
32
|
|
|
33
33
|
# Returns true if the given parameter can be parsed to a JSON object, false otherwise
|
|
34
34
|
def self.valid_json?(json)
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
unless json.nil?
|
|
36
|
+
JSON.parse(json)
|
|
37
|
+
return true
|
|
38
|
+
end
|
|
39
|
+
return false # Returns false if json is nil
|
|
37
40
|
rescue JSON::ParserError => _
|
|
38
41
|
return false
|
|
39
42
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-tpa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Perfect App
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|