fastlane-plugin-report 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 72d98542d644c6c154cafbf2e0676b4971867d15
4
- data.tar.gz: 3230df792926c6c29e498369aa6299368a4e608f
3
+ metadata.gz: f421c7f61f489d6e8005e497f475af5aedf2f99c
4
+ data.tar.gz: c9dc98b43d79ce6e68e0c485f175986bc775d78b
5
5
  SHA512:
6
- metadata.gz: 79d333a5c1c9aacb3c0f23965f8027f672950ac01f6056df3ae5177229efc2796478f2013036dcb2102dad02296594cc65bfbbe8a630d399a3ca6d1f4506fa5e
7
- data.tar.gz: a93e53b41103eafeb70b04b6ad380718dca06227babaa997b61f01f5e58ca24a9e0b0b54b097c9df4a41882ebc04552681b183120ea5cb5551865f7f7f0bdfc8
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
- "This plugin is responsible to send a report file of what you want to slack."
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Report
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-report
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno Miguêns