fastlane-plugin-telegram 0.1.0 → 0.1.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
  SHA1:
3
- metadata.gz: 8ec541756038b45df9853ba177d5803194cd602f
4
- data.tar.gz: 6c0a1d4891d9d63319551781d8cb6733c69bd560
3
+ metadata.gz: 545071294f8c7e05a347e78c85c4d1e05bc48018
4
+ data.tar.gz: f52a30f42972c898a9302c1befe3a91d673bdc23
5
5
  SHA512:
6
- metadata.gz: 6f9828421ad44b883f5bb1a37d9c05a0b4979e2e05789a2694f678c9ea9d7d113b58be230956beb8b4ee66814dc3ec62d59eec215c738f4efad26f15bea67a2f
7
- data.tar.gz: 2ea1e524750d7ee6163b80640c2d0d853aa9e49eb1ef369269a089577f1c67efb592485b165eccd3aebb43403f0341a2fdc63972d3c5a3ad59242f6e76a218df
6
+ metadata.gz: 74e33918affdfb63164690dc1c27a4db17740a59fac58462db9053e13fd878d927783b1c04a4e03435850ca30754dacec0dad5f1650769bf77250db40addf3d7
7
+ data.tar.gz: 6d5ea97183224ce88e9429b0670a60c90fe9f8e876b1c3283f106047f5a61415cc7b86f70962b4c72a29ab1e49daeff01a3fb20a8ceffe41a1e949d24d92ede4
@@ -2,7 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  class TelegramAction < Action
4
4
  def self.run(params)
5
- UI.message("Sned message to a telegram channel")
5
+ UI.message("Sending message to a telegram channel")
6
6
 
7
7
  token = params[:token]
8
8
  chat_id = params[:chat_id]
@@ -37,7 +37,7 @@ module Fastlane
37
37
  type: String),
38
38
  FastlaneCore::ConfigItem.new(key: :chat_id,
39
39
  env_name: "TELEGRAM_CHAT_ID",
40
- description: "Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
40
+ description: "Unique identifier for the target chat (not in the format @channel). For getting chat id you can send any message to your bot and get chat id from response https://api.telegram.org/botYOUR_TOKEN/getupdates",
41
41
  optional: false,
42
42
  type: String),
43
43
  FastlaneCore::ConfigItem.new(key: :text,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Telegram
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-telegram
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sergpetrov