fastlane-plugin-teams_card 1.0.1 → 1.0.2
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: cff2ba21f6f1a0e5bb809ed21800355127ab5c6eb5c485e7c389942ba5b7046e
|
4
|
+
data.tar.gz: a88bc0ac7cee0531d645eca9a5c92358d52bfa5dd99155a3d07b746a7092b401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b76a49b8885e5903e484cda6fe19f3f0973d5265147d9823c7b16b524c046bb246285627b593e9b49cc9b166b4b26e950b74b08188ba258f91d25fa8888a5138
|
7
|
+
data.tar.gz: 0aeaa187a00bbf5939536449ba1bf454271f5927a057fa2014620a9bf6f7b3ef7d3fe193a9f98a66a55d8577af90296b18d785849a289b0c4a4c860d291d8e1f
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Microsoft Teams `fastlane` plugin via Workflow
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-teams_card)
|
4
|
+
[](https://badge.fury.io/rb/fastlane-plugin-teams_card)
|
4
5
|
|
5
6
|
> ⚠️ Note: This plugin utilizes the latest **Workflows** app (rather than the [now-retired Office connectors](https://devblogs.microsoft.com/microsoft365dev/retirement-of-office-365-connectors-within-microsoft-teams/) used in other plugins)
|
6
7
|
|
@@ -112,8 +113,6 @@ fastlane action teams_card
|
|
112
113
|
|
113
114
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
114
115
|
|
115
|
-
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
116
|
-
|
117
116
|
## Run tests for this plugin
|
118
117
|
|
119
118
|
To run both the tests, and code style validation, run
|
@@ -134,7 +134,7 @@ module Fastlane
|
|
134
134
|
|
135
135
|
# Check if the message was successfully posted
|
136
136
|
def self.is_message_success(response)
|
137
|
-
if response.code.to_i
|
137
|
+
if response.code.to_i.between?(200, 299)
|
138
138
|
UI.message("🔔 The card was posted successfully.")
|
139
139
|
true
|
140
140
|
else
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-teams_card
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kondamon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09
|
11
|
+
date: 2024-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|