fastlane-plugin-discord_notifier 0.1.2 → 0.1.3
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: 34904451f95c7fc5f7a7c6306dcaa08ed9b498d1a62ae6d8a1b9439be9d25a67
|
|
4
|
+
data.tar.gz: 10e21236b5c92cc5b7b05f616a9f0a96dce3924ded74db51705006da42a05a8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6990534b086feb52ad1b41573e12332e249032e0d9a23b7762c9500c84350d11a3632048281f1b6f5fc02a4d0d297611178e26891f200d733490ecebc788a626
|
|
7
|
+
data.tar.gz: eb630d1beefc4c8494780275b056d051784c9d7bc8306ab237fb7ad774dde6a0eb7548017fb406736d9ed7d9f93044e214e9c72ef2f1a8cd94cb9634812ef357
|
data/README.md
CHANGED
|
@@ -25,10 +25,10 @@ discord_notifier(
|
|
|
25
25
|
webhook_url:"<discord webhook url>",
|
|
26
26
|
title: "<a title>",
|
|
27
27
|
description: "<a description>",
|
|
28
|
-
success: "<true/false>",
|
|
29
|
-
color: "FFFFF",
|
|
30
|
-
thumbnail_url:"<thumbnail url>",
|
|
31
|
-
image_url:"<image url>"
|
|
28
|
+
success: "<true/false>",
|
|
29
|
+
color: "FFFFF",
|
|
30
|
+
thumbnail_url:"<thumbnail url>",
|
|
31
|
+
image_url:"<image url>"
|
|
32
32
|
)
|
|
33
33
|
```
|
|
34
34
|
|
|
@@ -48,6 +48,8 @@ discord_notifier(
|
|
|
48
48
|
| client_id | Client id retrieved upon bot creation | true
|
|
49
49
|
| discord_user_id | User id of the discord user | true
|
|
50
50
|
|
|
51
|
+
**Note on the Bot**: Currently the bot is needed in case you want to retrieve your discord user's data. the plugin is using the user's name and avatar to assign them to the author of the message. Create a [discord application](https://discordapp.com/developers/applications), then a new bot and finally assign it to your server. You will need the bot token, the client id and your discord user's id to successfully retrieve all the necessary data.
|
|
52
|
+
|
|
51
53
|
## Example
|
|
52
54
|
|
|
53
55
|
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`.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-discord_notifier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nikos Theodosis
|
|
@@ -167,8 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
|
-
|
|
171
|
-
rubygems_version: 2.7.10
|
|
170
|
+
rubygems_version: 3.0.1
|
|
172
171
|
signing_key:
|
|
173
172
|
specification_version: 4
|
|
174
173
|
summary: Discord Notifier
|