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 +4 -4
- data/README.md +1 -1
- data/lib/fastlane/plugin/telegram/with/telegram.rb +20 -0
- data/lib/fastlane/plugin/telegram/{version.rb → with/topic/version.rb} +1 -1
- metadata +5 -5
- data/lib/fastlane/plugin/telegram.rb +0 -16
- /data/lib/fastlane/plugin/telegram/{actions → with/topic/actions}/telegram_action.rb +0 -0
- /data/lib/fastlane/plugin/telegram/{helper → with/topic/helper}/telegram_helper.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b894c2df6aa3c509584dcbb8b1e563c7b79f7d3cd2cfe813f67c119f97d302eb
|
4
|
+
data.tar.gz: 1dd4afa54016d2b39e4153c3e0dcbfe7b08203085de3e837f462763e36a4ba1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|
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
|
File without changes
|
File without changes
|