fastlane-plugin-teams_bot 1.0.0
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +104 -0
- data/lib/fastlane/plugin/teams_bot.rb +16 -0
- data/lib/fastlane/plugin/teams_bot/actions/teams_bot_action.rb +162 -0
- data/lib/fastlane/plugin/teams_bot/helper/teams_bot_helper.rb +16 -0
- data/lib/fastlane/plugin/teams_bot/version.rb +5 -0
- metadata +174 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 306b339e7deb7f7ca9e5d31e6d06de5dce760238f8267c9aa122e80e0e7265f4
|
4
|
+
data.tar.gz: a6b017fe71fec2dc099c245ca8ebf9f769f88eec7361f65fc9fda20208e4f4a3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 430f928d5f9cd537fda95dcfa785707f33b696abde7edb9257b223eacd2d5729a7266122571ac111d3ece6a641b7af88a6e310f8a680e22b5602ddd88105f720
|
7
|
+
data.tar.gz: 591da19c004cbf8399ead3fc88caddd1d0d426c1cbc95a422fde9267f8718b60f6d622f52a5263bc124f73fcb96d8c1842c8c863a6e0b9ae8455cef1d54de34f
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Hugo EXTRAT <extrat.h@gmail.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
# Microsoft Teams Bot `fastlane` plugin
|
2
|
+
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-teams_bot)
|
4
|
+
[](https://badge.fury.io/rb/fastlane-plugin-teams_bot)
|
5
|
+
|
6
|
+
|
7
|
+
## Getting Started
|
8
|
+
|
9
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-teams_bot`, add it to your project by running:
|
10
|
+
|
11
|
+
```bash
|
12
|
+
fastlane add_plugin teams_bot
|
13
|
+
```
|
14
|
+
|
15
|
+
## About teams_bot
|
16
|
+
|
17
|
+
With this plugin you will be able to send a message on a microsoft teams channel.
|
18
|
+
|
19
|
+
Beforehand you must create a new incoming webhook on the Microsoft Teams channel of your choice, you can follow this documentation to help you do this: [Incoming Webhook](https://docs.microsoft.com/en-US/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook#add-an-incoming-webhook-to-a-teams-channel)
|
20
|
+
|
21
|
+
`teams_bot` allows you to send a fully custom message to a specific incoming webhook.
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
teams_bot(
|
27
|
+
teams_url: "<incoming webhook URL",
|
28
|
+
title: "Welcome from Fastlane",
|
29
|
+
text: "Hi there !! I am [Teams Bot](https://github.com/huextrat/fastlane-plugin-teams_bot). I can send messages on Microsoft Teams very easily from Fastlane.",
|
30
|
+
activity_title: "Hey",
|
31
|
+
activity_image: "https://seeklogo.com/images/F/fastlane-logo-6CA0B0B428-seeklogo.com.png"
|
32
|
+
)
|
33
|
+
```
|
34
|
+
|
35
|
+
or
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
teams_bot(
|
39
|
+
teams_url: "<incoming webhook URL",
|
40
|
+
title: "Welcome from Fastlane",
|
41
|
+
text: "Hi there !! I am [Teams Bot](https://github.com/huextrat/fastlane-plugin-teams_bot). I can send messages on Microsoft Teams very easily from Fastlane.",
|
42
|
+
activity_title: "Hey",
|
43
|
+
activity_image: "https://seeklogo.com/images/F/fastlane-logo-6CA0B0B428-seeklogo.com.png",
|
44
|
+
facts: [
|
45
|
+
{
|
46
|
+
"name" => "Environment",
|
47
|
+
"value" => "Staging"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"name" => "Branch",
|
51
|
+
"value" => "Develop"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
theme_color: "321244", # A custom RGB color
|
55
|
+
use_markdown: true # Using markdown allowing you to add URL in your text
|
56
|
+
)
|
57
|
+
```
|
58
|
+
|
59
|
+
This code give the following message:
|
60
|
+
|
61
|
+
<img src="screenshots/1.png">
|
62
|
+
|
63
|
+
### Help
|
64
|
+
|
65
|
+
Once installed, information and help for an action can be printed out with this command:
|
66
|
+
|
67
|
+
```bash
|
68
|
+
fastlane action teams_bot
|
69
|
+
```
|
70
|
+
|
71
|
+
### `teams_bot`
|
72
|
+
|
73
|
+
| Key | Description | Env Var | Default |
|
74
|
+
|-------------------|----------------------------|----------------------------|---------|
|
75
|
+
| theme_color | Theme color of the message card | TEAMS_MESSAGE_THEME_COLOR | 321244 |
|
76
|
+
| title | The title that should be displayed on Teams | TEAMS_MESSAGE_TITLE | |
|
77
|
+
| summary | The summary that should be displayed on Teams | TEAMS_MESSAGE_SUMMARY | summary |
|
78
|
+
| activity_title | A summary of your message | TEAMS_MESSAGE_ACTIVITY_TITLE | |
|
79
|
+
| activity_subtitle | A quick subtitle for your activity (date, project name, branch, ...) | TEAMS_MESSAGE_ACTIVITY_SUBTITLE | '' |
|
80
|
+
| activity_image | Display an image on your activity (project logo, company logo, ...) | TEAMS_MESSAGE_ACTIVITY_IMAGE | |
|
81
|
+
| text | The message you want to display | TEAMS_MESSAGE_TEXT | |
|
82
|
+
| use_markdown | Define to use or not markdown | TEAMS_MESSAGE_USE_MARKDOWN | true |
|
83
|
+
| facts | Optional facts (assigned to, due date, status, branch, environment, ...) | TEAMS_MESSAGE_FACTS | [] |
|
84
|
+
| teams_url | The URL of the incoming Webhook you created on your Microsoft Teams channel | TEAMS_MESSAGE_TEAMS_URL | |
|
85
|
+
|
86
|
+
## Example
|
87
|
+
|
88
|
+
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`.
|
89
|
+
|
90
|
+
## Issues and Feedback
|
91
|
+
|
92
|
+
For any other issues and feedback about this plugin, please submit it to this repository.
|
93
|
+
|
94
|
+
## Troubleshooting
|
95
|
+
|
96
|
+
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
97
|
+
|
98
|
+
## Using _fastlane_ Plugins
|
99
|
+
|
100
|
+
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
101
|
+
|
102
|
+
## About _fastlane_
|
103
|
+
|
104
|
+
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane/plugin/teams_bot/version'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module TeamsBot
|
5
|
+
# Return all .rb files inside the "actions" and "helper" directory
|
6
|
+
def self.all_classes
|
7
|
+
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
# By default we want to import all available actions and helpers
|
13
|
+
# A plugin can contain any number of actions and plugins
|
14
|
+
Fastlane::TeamsBot.all_classes.each do |current|
|
15
|
+
require current
|
16
|
+
end
|
@@ -0,0 +1,162 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module Actions
|
5
|
+
class TeamsBotAction < Action
|
6
|
+
def self.run(params)
|
7
|
+
payload = {
|
8
|
+
"@type" => "MessageCard",
|
9
|
+
"@context" => "http://schema.org/extensions",
|
10
|
+
"themeColor" => params[:theme_color],
|
11
|
+
"title" => params[:title],
|
12
|
+
"summary" => params[:summary],
|
13
|
+
"sections": [{
|
14
|
+
"activityTitle": params[:activity_title],
|
15
|
+
"activitySubtitle": params[:activity_subtitle],
|
16
|
+
"activityImage": params[:activity_image],
|
17
|
+
"text" => params[:text],
|
18
|
+
"facts": params[:facts],
|
19
|
+
"markdown": params[:use_markdown]
|
20
|
+
}]
|
21
|
+
}
|
22
|
+
|
23
|
+
send_message(params[:teams_url], payload)
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.send_message(url, payload)
|
27
|
+
require 'net/http'
|
28
|
+
require 'uri'
|
29
|
+
json_headers = { 'Content-Type' => 'application/json' }
|
30
|
+
uri = URI.parse(url)
|
31
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
32
|
+
http.use_ssl = true
|
33
|
+
response = http.post(uri.path, payload.to_json, json_headers)
|
34
|
+
is_message_success(response)
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.is_message_success(response)
|
38
|
+
if response.code.to_i == 200 && response.body.to_i == 1
|
39
|
+
UI.message("🍾 The message was sent successfully")
|
40
|
+
true
|
41
|
+
else
|
42
|
+
UI.user_error!("⚠️ An error occurred: #{response.body}")
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.available_options
|
47
|
+
[
|
48
|
+
# Card configuration
|
49
|
+
FastlaneCore::ConfigItem.new(key: :theme_color,
|
50
|
+
env_name: "TEAMS_MESSAGE_THEME_COLOR",
|
51
|
+
description: "Theme color of the message card",
|
52
|
+
optional: true,
|
53
|
+
default_value: "321244"),
|
54
|
+
|
55
|
+
FastlaneCore::ConfigItem.new(key: :title,
|
56
|
+
env_name: "TEAMS_MESSAGE_TITLE",
|
57
|
+
optional: false,
|
58
|
+
description: "The title that should be displayed on Teams"),
|
59
|
+
|
60
|
+
FastlaneCore::ConfigItem.new(key: :summary,
|
61
|
+
env_name: "TEAMS_MESSAGE_SUMMARY",
|
62
|
+
description: "The summary that should be displayed on Teams",
|
63
|
+
optional: true,
|
64
|
+
default_value: "summary"),
|
65
|
+
|
66
|
+
# Activity Configuration
|
67
|
+
FastlaneCore::ConfigItem.new(key: :activity_title,
|
68
|
+
env_name: "TEAMS_MESSAGE_ACTIVITY_TITLE",
|
69
|
+
optional: false,
|
70
|
+
description: "A summary of your message"),
|
71
|
+
|
72
|
+
FastlaneCore::ConfigItem.new(key: :activity_subtitle,
|
73
|
+
env_name: "TEAMS_MESSAGE_ACTIVITY_SUBTITLE",
|
74
|
+
optional: true,
|
75
|
+
description: "A quick subtitle for your activity (date, project name, branch, ...)",
|
76
|
+
default_value: ""),
|
77
|
+
|
78
|
+
FastlaneCore::ConfigItem.new(key: :activity_image,
|
79
|
+
env_name: "TEAMS_MESSAGE_ACTIVITY_IMAGE",
|
80
|
+
sensitive: true,
|
81
|
+
optional: true,
|
82
|
+
description: "Display an image on your activity (project logo, company logo, ...)"),
|
83
|
+
|
84
|
+
FastlaneCore::ConfigItem.new(key: :text,
|
85
|
+
env_name: "TEAMS_MESSAGE_TEXT",
|
86
|
+
description: "The message you want to display",
|
87
|
+
optional: false),
|
88
|
+
|
89
|
+
FastlaneCore::ConfigItem.new(key: :use_markdown,
|
90
|
+
type: Boolean,
|
91
|
+
env_name: "TEAMS_MESSAGE_USE_MARKDOWN",
|
92
|
+
optional: true,
|
93
|
+
description: "Define to use or not markdown",
|
94
|
+
default_value: true),
|
95
|
+
|
96
|
+
FastlaneCore::ConfigItem.new(key: :facts,
|
97
|
+
type: Array,
|
98
|
+
env_name: "TEAMS_MESSAGE_FACTS",
|
99
|
+
description: "Optional facts (assigned to, due date, status, branch, environment, ...)",
|
100
|
+
default_value: []),
|
101
|
+
|
102
|
+
# Core Configuration
|
103
|
+
FastlaneCore::ConfigItem.new(key: :teams_url,
|
104
|
+
env_name: "TEAMS_MESSAGE_TEAMS_URL",
|
105
|
+
sensitive: true,
|
106
|
+
optional: false,
|
107
|
+
description: "The URL of the incoming Webhook you created on your Microsoft Teams channel",
|
108
|
+
verify_block: proc do |value|
|
109
|
+
UI.user_error!("Invalid URL, must start with https://") unless value.start_with?("https://")
|
110
|
+
end)
|
111
|
+
]
|
112
|
+
end
|
113
|
+
|
114
|
+
def self.example_code
|
115
|
+
[
|
116
|
+
'teams_bot(
|
117
|
+
teams_url: "https://outlook.office.com/webhook/...",
|
118
|
+
title: "Welcome from Fastlane",
|
119
|
+
summary: "Integration is a success",
|
120
|
+
text: "Hi there !! I am [Teams Bot](https://github.com/huextrat/fastlane-plugin-teams_bot). I can send messages on Microsoft Teams very easily from Fastlane.",
|
121
|
+
activity_title: "Hey",
|
122
|
+
activity_subtitle: "Working on Fastlane",
|
123
|
+
activity_image: "https://seeklogo.com/images/F/fastlane-logo-6CA0B0B428-seeklogo.com.png",
|
124
|
+
facts: [
|
125
|
+
{
|
126
|
+
"name" => "Environment",
|
127
|
+
"value" => "Staging"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"name" => "Branch",
|
131
|
+
"value" => "Develop"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
theme_color: "321244",
|
135
|
+
use_markdown: true
|
136
|
+
)'
|
137
|
+
]
|
138
|
+
end
|
139
|
+
|
140
|
+
def self.description
|
141
|
+
"Easily send a message to a Microsoft Teams channel through the Webhook connector"
|
142
|
+
end
|
143
|
+
|
144
|
+
def self.details
|
145
|
+
# Optional:
|
146
|
+
"Send a message to a specific channel on your Microsoft Teams organization"
|
147
|
+
end
|
148
|
+
|
149
|
+
def self.authors
|
150
|
+
["Hugo EXTRAT"]
|
151
|
+
end
|
152
|
+
|
153
|
+
def self.return_value
|
154
|
+
# If your method provides a return value, you can describe here what it does
|
155
|
+
end
|
156
|
+
|
157
|
+
def self.is_supported?(platform)
|
158
|
+
true
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane_core/ui/ui'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
|
+
|
6
|
+
module Helper
|
7
|
+
class TeamsBotHelper
|
8
|
+
# class methods that you define here become available in your action
|
9
|
+
# as `Helper::TeamsBotHelper.your_method`
|
10
|
+
#
|
11
|
+
def self.show_message
|
12
|
+
UI.message("Hello from the teams_bot plugin helper!")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fastlane-plugin-teams_bot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Hugo EXTRAT
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-01-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: pry
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec_junit_formatter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.49.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.49.1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-require_tools
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: fastlane
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 2.171.0
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 2.171.0
|
139
|
+
description:
|
140
|
+
email: extrat.h@gmail.com
|
141
|
+
executables: []
|
142
|
+
extensions: []
|
143
|
+
extra_rdoc_files: []
|
144
|
+
files:
|
145
|
+
- LICENSE
|
146
|
+
- README.md
|
147
|
+
- lib/fastlane/plugin/teams_bot.rb
|
148
|
+
- lib/fastlane/plugin/teams_bot/actions/teams_bot_action.rb
|
149
|
+
- lib/fastlane/plugin/teams_bot/helper/teams_bot_helper.rb
|
150
|
+
- lib/fastlane/plugin/teams_bot/version.rb
|
151
|
+
homepage: https://github.com/huextrat/fastlane-plugin-teams_bot
|
152
|
+
licenses:
|
153
|
+
- MIT
|
154
|
+
metadata: {}
|
155
|
+
post_install_message:
|
156
|
+
rdoc_options: []
|
157
|
+
require_paths:
|
158
|
+
- lib
|
159
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
160
|
+
requirements:
|
161
|
+
- - ">="
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: '0'
|
164
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
|
+
requirements:
|
166
|
+
- - ">="
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '0'
|
169
|
+
requirements: []
|
170
|
+
rubygems_version: 3.0.3
|
171
|
+
signing_key:
|
172
|
+
specification_version: 4
|
173
|
+
summary: Easily alert a Microsoft Teams channel
|
174
|
+
test_files: []
|