fastlane-plugin-firebase_app_distribution 0.2.2 → 0.2.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed04551803fc7a5edd8e0d43b48ff6e84e55565f3219422619e78ef96f2e6654
|
|
4
|
+
data.tar.gz: bd070b167f9fa4f72e13f3250524af46b75861ee9096e2a73b8e5441c5889fa8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 123bec0fbac40f216c10a4e05aab1e43644286972f2ab436ed91686a1e5404779b3d9f7dbd8ecfe208264f702f51982cfea60d3607e1090795941d2d0b65e23c
|
|
7
|
+
data.tar.gz: d4f509e5a09b916486f0d10802c2ff53fc1efb803e476f27f71bfade12ee5b6a46b0aa0992099582531c93de423712ccaf6a8b1276f22145701eef4158cbd95b
|
data/lib/fastlane/plugin/firebase_app_distribution/client/firebase_app_distribution_api_client.rb
CHANGED
|
@@ -40,6 +40,7 @@ module Fastlane
|
|
|
40
40
|
begin
|
|
41
41
|
connection.post(enable_access_url(app_id, release_id), payload.to_json) do |request|
|
|
42
42
|
request.headers["Authorization"] = "Bearer " + @auth_token
|
|
43
|
+
request.headers["Content-Type"] = "application/json"
|
|
43
44
|
end
|
|
44
45
|
rescue Faraday::ResourceNotFound
|
|
45
46
|
UI.user_error!("#{ErrorMessage::INVALID_APP_ID}: #{app_id}")
|
|
@@ -67,6 +68,7 @@ module Fastlane
|
|
|
67
68
|
begin
|
|
68
69
|
connection.post(release_notes_create_url(app_id, release_id), payload.to_json) do |request|
|
|
69
70
|
request.headers["Authorization"] = "Bearer " + @auth_token
|
|
71
|
+
request.headers["Content-Type"] = "application/json"
|
|
70
72
|
end
|
|
71
73
|
rescue Faraday::ResourceNotFound
|
|
72
74
|
UI.user_error!("#{ErrorMessage::INVALID_APP_ID}: #{app_id}")
|
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-firebase_app_distribution
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Natchev
|
|
8
8
|
- Manny Jimenez
|
|
9
9
|
- Alonso Salas Infante
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2020-09-
|
|
13
|
+
date: 2020-09-29 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: pry
|
|
@@ -138,7 +138,7 @@ dependencies:
|
|
|
138
138
|
- - ">="
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: 2.127.1
|
|
141
|
-
description:
|
|
141
|
+
description:
|
|
142
142
|
email:
|
|
143
143
|
- snatchev@google.com
|
|
144
144
|
- mannyjimenez@google.com
|
|
@@ -162,7 +162,7 @@ homepage: https://github.com/fastlane/fastlane-plugin-firebase_app_distribution
|
|
|
162
162
|
licenses:
|
|
163
163
|
- MIT
|
|
164
164
|
metadata: {}
|
|
165
|
-
post_install_message:
|
|
165
|
+
post_install_message:
|
|
166
166
|
rdoc_options: []
|
|
167
167
|
require_paths:
|
|
168
168
|
- lib
|
|
@@ -177,8 +177,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
177
177
|
- !ruby/object:Gem::Version
|
|
178
178
|
version: '0'
|
|
179
179
|
requirements: []
|
|
180
|
-
rubygems_version: 3.1.
|
|
181
|
-
signing_key:
|
|
180
|
+
rubygems_version: 3.1.2
|
|
181
|
+
signing_key:
|
|
182
182
|
specification_version: 4
|
|
183
183
|
summary: Release your beta builds to Firebase App Distribution. https://firebase.google.com/docs/app-distribution
|
|
184
184
|
test_files: []
|