fastlane-plugin-setup_app_feedback_sdk 0.1.0 → 0.1.1
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: 85887f5de6932427fa7a2b01b33c8c72d94b3aa2985dc71bc981b9e33e96ead0
|
|
4
|
+
data.tar.gz: 1c288789521ff4ff17e86649288c08bb50f19d077c61352088143a22752bcc9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08f3753ccdbe1b4eeb2fafc4742e0ee9e9d659e537397e5137faa65469d4ed28edd4e062b2200d1613ef4fec97a40224b92d37cfb56d5fd9aa8c548fd031cdb2'
|
|
7
|
+
data.tar.gz: 1a4ed6efca2f79448be818cd2633f9199063530ab360edfcbbca37557acd2692b3da9a19ceb101dd932766175afe16f8ad4ae182daf13eb512b71a6fa5d4aa4e
|
|
@@ -12,7 +12,14 @@ module Fastlane
|
|
|
12
12
|
plist = plist_path(params)
|
|
13
13
|
|
|
14
14
|
SetInfoPlistValueAction.run(key: 'AppFeedback_SlackApiToken', value: params[:slack_api_token], path: plist)
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
if params[:slack_channel]
|
|
17
|
+
SetInfoPlistValueAction.run(key: 'AppFeedback_SlackChannel', value: params[:slack_channel], path: plist)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
if params[:slack_api_url]
|
|
21
|
+
SetInfoPlistValueAction.run(key: 'AppFeedback_SlackApiUrl', value: params[:slack_api_url], path: plist)
|
|
22
|
+
end
|
|
16
23
|
|
|
17
24
|
if other_action.git_branch
|
|
18
25
|
SetInfoPlistValueAction.run(key: 'AppFeedback_Branch', value: other_action.git_branch, path: plist)
|
|
@@ -122,7 +129,12 @@ module Fastlane
|
|
|
122
129
|
FastlaneCore::ConfigItem.new(key: :slack_channel,
|
|
123
130
|
env_name: "APP_FEEDBACK_SDK_SLACK_CHANNEL",
|
|
124
131
|
description: "Slack channel",
|
|
125
|
-
optional:
|
|
132
|
+
optional: true,
|
|
133
|
+
type: String),
|
|
134
|
+
FastlaneCore::ConfigItem.new(key: :slack_api_url,
|
|
135
|
+
env_name: "APP_FEEDBACK_SLACK_API_URL",
|
|
136
|
+
description: "Slack API URL",
|
|
137
|
+
optional: true,
|
|
126
138
|
type: String),
|
|
127
139
|
FastlaneCore::ConfigItem.new(key: :project,
|
|
128
140
|
env_name: 'APP_FEEDBACK_SDK_PROJECT',
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-setup_app_feedback_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yahoo Japan Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
170
|
rubyforge_project:
|
|
171
|
-
rubygems_version: 2.7.
|
|
171
|
+
rubygems_version: 2.7.6
|
|
172
172
|
signing_key:
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: Setup the Info.plist for App Feedback SDK
|