fastlane-plugin-teams_card 1.0.0 → 1.0.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: 4003ed21a14b91be8b3aa4baf4d7af316bbf9030a70a0f259dd7706cfa49f11f
4
- data.tar.gz: 2598117c03da52bc03b7110afe3930af99bf89a87457500ace5faabaec8dd24f
3
+ metadata.gz: 7691cd01244ecd5e4cdd5b680b5733529acfdfe0b09b9f80e79ff0d49cf57b5c
4
+ data.tar.gz: a5ac8543992ef5cf0b348032787206ee873d4227c2aa94551df83b8aa6139ac9
5
5
  SHA512:
6
- metadata.gz: 5369980097336eeff75f8db7d61bae66ed3b7deb92ce120dd9619fb1f696b5259b48b0da43259e7b35b79e5764a56682b22d134c230e7080a18b7c0737cb3128
7
- data.tar.gz: d848efdaee8cfb7ecdaae15dbaf4147338bf6077caed21b3b8de0a9c881e1cd69a293dceb915121824b85997d071fd5e84facf47409de4d0a454156e6bd8def8
6
+ metadata.gz: 01abb524bcc23c669119c8c8ab84778a236a55b4f9e8f45dcda2273c143ab543448b25d93f22a6c0cf511ecf7966df063c632929ed3b191ad5a877de47079760
7
+ data.tar.gz: '09e8e933b1bd00bbf77123ac27a8e3f07f6678dfd6f95e92658020234dd8448a4028ead69a0a9cfa3fe4ea72dc37ebb78eea133b44ff5210c8fdcf58bf7e8f64'
@@ -193,6 +193,48 @@ module Fastlane
193
193
  ]
194
194
  end
195
195
 
196
+ def self.example_code
197
+ [
198
+ 'teams_card(
199
+ workflow_url: "https://your.logic.azure.com:443/workflows/1234567890",
200
+ title: "Notification Title",
201
+ text: "A new release is ready for testing!",
202
+ image: "https://raw.githubusercontent.com/fastlane/boarding/master/app/assets/images/fastlane.png",
203
+ image_title: "Fastlane",
204
+ open_url: "https://beta.itunes.apple.com/v1/app/_YOUR_APP_ID_",
205
+ facts: [
206
+ {
207
+ "title" => "Environment",
208
+ "value" => "Staging"
209
+ },
210
+ {
211
+ "title" => "Release",
212
+ "value" => "1.0.3"
213
+ }
214
+ ]
215
+ )'
216
+ ]
217
+ end
218
+
219
+ def self.description
220
+ "Easily send a message to a Microsoft Teams channel or group chat through the Power Automate Webhook connector"
221
+ end
222
+
223
+ def self.details
224
+ "Send a message to a specific channel, group chat or chat on your Microsoft Teams organization via a Workflow of Power Automate"
225
+ end
226
+
227
+ def self.authors
228
+ ["Kondamon"]
229
+ end
230
+
231
+ def self.return_value
232
+ # If your method provides a return value, you can describe here what it does
233
+ end
234
+
235
+ def self.is_supported?(platform)
236
+ true
237
+ end
196
238
  # Rest of the methods...
197
239
  end
198
240
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TeamsCard
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-teams_card
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kondamon