fastlane-plugin-report 0.1.4 → 0.1.5
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: f421c7f61f489d6e8005e497f475af5aedf2f99c
|
|
4
|
+
data.tar.gz: c9dc98b43d79ce6e68e0c485f175986bc775d78b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc4bab0dc964da617d08ce0c37470fc2a472674d5dacfe854b45030a00541b2fe3df7a2fa313c266053e195fe694efb7321f88df535c93da4178050383953048
|
|
7
|
+
data.tar.gz: d62ad6101389de58ff1bd343b2923004344f011c8ba913e6ca49f56a28127c505c245d359a29edfd88153e705fd1debd5f4c8d10a7bb6142eecd608f009cf46a
|
|
@@ -40,7 +40,10 @@ module Fastlane
|
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
def self.description
|
|
43
|
-
|
|
43
|
+
[
|
|
44
|
+
"After an action, like scan for instance, you're able to generate a report file.",
|
|
45
|
+
"This fastlane plugin gives you a way to upload and share your report using Slack."
|
|
46
|
+
].join('\n')
|
|
44
47
|
end
|
|
45
48
|
|
|
46
49
|
def self.authors
|
|
@@ -108,10 +111,18 @@ module Fastlane
|
|
|
108
111
|
end
|
|
109
112
|
|
|
110
113
|
def self.is_supported?(platform)
|
|
114
|
+
true
|
|
111
115
|
end
|
|
112
116
|
|
|
113
117
|
def self.example_code
|
|
114
|
-
[
|
|
118
|
+
[
|
|
119
|
+
"report(
|
|
120
|
+
slack_api_token: 'xxxx-0000000000-11111111111-222222222222-xxxxxxxxx33333333xxxxxxxx3333333',
|
|
121
|
+
path: './some/path/report.html',
|
|
122
|
+
path_type: 'text/html',
|
|
123
|
+
file_name: 'report.html'
|
|
124
|
+
)"
|
|
125
|
+
]
|
|
115
126
|
end
|
|
116
127
|
end
|
|
117
128
|
end
|