fastlane-plugin-telegram-with-topic 0.2.0 → 0.2.1

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: '091f9bcc9a358073976814d8c2b6f6ea46496cf5e994084433910fb9eeab8ad1'
4
- data.tar.gz: 8882431bd9e6adb9e52836df68bc853a7354c0a34c9e475b9dc7b9fce7745fd2
3
+ metadata.gz: b894c2df6aa3c509584dcbb8b1e563c7b79f7d3cd2cfe813f67c119f97d302eb
4
+ data.tar.gz: 1dd4afa54016d2b39e4153c3e0dcbfe7b08203085de3e837f462763e36a4ba1b
5
5
  SHA512:
6
- metadata.gz: 9daaf41f7a8cb2a6041aee4c81e90807e69c60c7dcc29b91ae9191181db1707b52f1290a27d48f9a88a9ea65de2c3fce4496d603923f384d95eb721665337fb0
7
- data.tar.gz: 25c6097e713220e3499879437aed0f5504cbeab3b087c04ba3c01b2f9da797a1c6560e4f2d6d6f4abc86e5b65d267d00b93824abe51f4915682f3c2c9f4afe8b
6
+ metadata.gz: 4425846bee9f917d00455a1ca011d89c10d440343fdd4423f726298a51b16d45306f76ff8031ee02bd5e286ec8050c28add5e5c5a452c79af90395e99c0d473d
7
+ data.tar.gz: 0c7987ee991a7c402d64814939a278db67a81ec6b240e0028fbd774f1556383b874c1ed059bfc2f52e088fb0c403bae01b4b29831d2d23b7177185b1e6e77996
data/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-telegram`, add it to your project by running:
8
8
 
9
9
  ```bash
10
- fastlane add_plugin telegram
10
+ fastlane add_plugin telegram-with-topic
11
11
  ```
12
12
 
13
13
  ## About telegram
@@ -0,0 +1,20 @@
1
+ require 'fastlane/plugin/telegram/with/topic/version'
2
+
3
+ module Fastlane
4
+ module Telegram
5
+ module With
6
+ module Topic
7
+ # Return all .rb files inside the "actions" and "helper" directory
8
+ def self.all_classes
9
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+
16
+ # By default we want to import all available actions and helpers
17
+ # A plugin can contain any number of actions and plugins
18
+ Fastlane::Telegram::With::Topic.all_classes.each do |current|
19
+ require current
20
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Telegram
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-telegram-with-topic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - hendyevan
@@ -116,10 +116,10 @@ extra_rdoc_files: []
116
116
  files:
117
117
  - LICENSE
118
118
  - README.md
119
- - lib/fastlane/plugin/telegram.rb
120
- - lib/fastlane/plugin/telegram/actions/telegram_action.rb
121
- - lib/fastlane/plugin/telegram/helper/telegram_helper.rb
122
- - lib/fastlane/plugin/telegram/version.rb
119
+ - lib/fastlane/plugin/telegram/with/telegram.rb
120
+ - lib/fastlane/plugin/telegram/with/topic/actions/telegram_action.rb
121
+ - lib/fastlane/plugin/telegram/with/topic/helper/telegram_helper.rb
122
+ - lib/fastlane/plugin/telegram/with/topic/version.rb
123
123
  homepage: https://github.com/hendyevan/fastlane-plugin-telegram
124
124
  licenses:
125
125
  - MIT
@@ -1,16 +0,0 @@
1
- require 'fastlane/plugin/telegram/version'
2
-
3
- module Fastlane
4
- module Telegram-With-Topics
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::Telegram.all_classes.each do |current|
15
- require current
16
- end