fastlane-plugin-discord_notifier 0.1.2 → 0.1.3

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
  SHA256:
3
- metadata.gz: df02d5432c8eb9b837f56d41a5dcfacb0024acdc8f1a983df5dfd7767afc8333
4
- data.tar.gz: 6e0b0dff9b4edbad76724402b4cbe47de7fb6dbdc8a2b334c84c07b18a2486aa
3
+ metadata.gz: 34904451f95c7fc5f7a7c6306dcaa08ed9b498d1a62ae6d8a1b9439be9d25a67
4
+ data.tar.gz: 10e21236b5c92cc5b7b05f616a9f0a96dce3924ded74db51705006da42a05a8c
5
5
  SHA512:
6
- metadata.gz: 05b8709efcc84b6047898fd05219ea97a4a0bffc1e77cef6a27e26197839ea092547b649c3c60176197749d219b96e18be9201bb64d1759192bf599f4ba51bc6
7
- data.tar.gz: dc7304c5f2a4deb38a1b0b851b66415f23147ba2a78bb89a019ef37cdc510c7d22fb3ae4ff7fbd94ed849e68a2622ff3098014d55b6ed63aabdefbbb1a0086e1
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>", # Optional - Default is true
29
- color: "FFFFF", # Optional
30
- thumbnail_url:"<thumbnail url>", # Optional
31
- image_url:"<image url>" # Optional
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`.
@@ -32,7 +32,7 @@ module Fastlane
32
32
  token: bot_token,
33
33
  client_id: client_id
34
34
  )
35
- user = bot.user(user)
35
+ user = bot.user(user_id)
36
36
 
37
37
  return user
38
38
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module DiscordNotifier
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
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.2
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
- rubyforge_project:
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