botkit-telegram 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rubocop.yml +116 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +34 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +10 -0
- data/botkit-telegram.gemspec +28 -0
- data/lib/botkit/telegram.rb +14 -0
- data/lib/botkit/telegram/bot.rb +63 -0
- data/lib/botkit/telegram/message.rb +8 -0
- data/lib/botkit/telegram/version.rb +7 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 89d50e1cb055acbbb6e213cd67a5e1c909f31d96
|
4
|
+
data.tar.gz: 02e08fe2a232c63a36930b5dab168923601d4e94
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ed27de5f150ec0371955c0d23cfe870e6abe860ed35745acfd2dcb29d68ddd7057c6e853f91a473967437f5f7cf0bb3255e082e0c70ae31608a235b95496a4c3
|
7
|
+
data.tar.gz: 49f5c6168f2b9c34c940ae6c5b1aed774b21483207b022b4b9e0400fb6c395895df137dffb426e47b07f0d9b53d6fa845950d2fa2153b6c4fc69bd941bee4653
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 2.4
|
3
|
+
|
4
|
+
Style/Alias:
|
5
|
+
EnforcedStyle: prefer_alias_method
|
6
|
+
|
7
|
+
Style/FrozenStringLiteralComment:
|
8
|
+
EnforcedStyle: always
|
9
|
+
|
10
|
+
Style/ClassCheck:
|
11
|
+
EnforcedStyle: kind_of?
|
12
|
+
|
13
|
+
Metrics/LineLength:
|
14
|
+
Max: 80
|
15
|
+
|
16
|
+
Style/BlockDelimiters:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
Style/RegexpLiteral:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
Metrics/AbcSize:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
Style/PerlBackrefs:
|
26
|
+
Enabled: false
|
27
|
+
|
28
|
+
ClassLength:
|
29
|
+
Enabled: false
|
30
|
+
|
31
|
+
CyclomaticComplexity:
|
32
|
+
Enabled: false
|
33
|
+
|
34
|
+
Documentation:
|
35
|
+
Enabled: false
|
36
|
+
|
37
|
+
Encoding:
|
38
|
+
Enabled: false
|
39
|
+
|
40
|
+
FileName:
|
41
|
+
Enabled: false
|
42
|
+
|
43
|
+
IfUnlessModifier:
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
MethodLength:
|
47
|
+
Enabled: false
|
48
|
+
|
49
|
+
ModuleFunction:
|
50
|
+
Enabled: false
|
51
|
+
|
52
|
+
OneLineConditional:
|
53
|
+
Enabled: false
|
54
|
+
|
55
|
+
ParameterLists:
|
56
|
+
Enabled: false
|
57
|
+
|
58
|
+
Proc:
|
59
|
+
Enabled: false
|
60
|
+
|
61
|
+
SingleLineBlockParams:
|
62
|
+
Enabled: false
|
63
|
+
|
64
|
+
VariableInterpolation:
|
65
|
+
Enabled: false
|
66
|
+
|
67
|
+
Style/TrailingCommaInLiteral:
|
68
|
+
Enabled: false
|
69
|
+
|
70
|
+
WhileUntilModifier:
|
71
|
+
Enabled: false
|
72
|
+
|
73
|
+
PredicateName:
|
74
|
+
NamePrefixBlacklist:
|
75
|
+
- is_
|
76
|
+
|
77
|
+
StringLiterals:
|
78
|
+
EnforcedStyle: double_quotes
|
79
|
+
|
80
|
+
DotPosition:
|
81
|
+
EnforcedStyle: leading
|
82
|
+
|
83
|
+
SpaceBeforeBlockBraces:
|
84
|
+
EnforcedStyle: space
|
85
|
+
|
86
|
+
SpaceInsideBlockBraces:
|
87
|
+
EnforcedStyle: no_space
|
88
|
+
|
89
|
+
DoubleNegation:
|
90
|
+
Enabled: false
|
91
|
+
|
92
|
+
SpaceInsideBlockBraces:
|
93
|
+
SpaceBeforeBlockParameters: false
|
94
|
+
|
95
|
+
SpaceInsideHashLiteralBraces:
|
96
|
+
Enabled: false
|
97
|
+
|
98
|
+
PercentLiteralDelimiters:
|
99
|
+
PreferredDelimiters:
|
100
|
+
'%': '{}'
|
101
|
+
'%i': '{}'
|
102
|
+
'%q': '{}'
|
103
|
+
'%Q': '{}'
|
104
|
+
'%r': '{}'
|
105
|
+
'%s': '{}'
|
106
|
+
'%w': '{}'
|
107
|
+
'%W': '{}'
|
108
|
+
'%x': '{}'
|
109
|
+
|
110
|
+
Style/CollectionMethods:
|
111
|
+
PreferredMethods:
|
112
|
+
collect: 'map'
|
113
|
+
collect!: 'map!'
|
114
|
+
inject: 'reduce'
|
115
|
+
detect: 'find'
|
116
|
+
find_all: 'select'
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at fnando.vieira@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
botkit-telegram (0.0.1)
|
5
|
+
botkit
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
aitch (1.0.2)
|
11
|
+
nokogiri (>= 1.6.0)
|
12
|
+
botkit (0.0.1)
|
13
|
+
aitch
|
14
|
+
signal
|
15
|
+
mini_portile2 (2.3.0)
|
16
|
+
minitest (5.10.3)
|
17
|
+
minitest-utils (0.4.0)
|
18
|
+
minitest
|
19
|
+
nokogiri (1.8.1)
|
20
|
+
mini_portile2 (~> 2.3.0)
|
21
|
+
rake (12.2.1)
|
22
|
+
signal (1.1.0)
|
23
|
+
|
24
|
+
PLATFORMS
|
25
|
+
ruby
|
26
|
+
|
27
|
+
DEPENDENCIES
|
28
|
+
botkit-telegram!
|
29
|
+
bundler
|
30
|
+
minitest-utils
|
31
|
+
rake
|
32
|
+
|
33
|
+
BUNDLED WITH
|
34
|
+
1.16.0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Nando Vieira
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Botkit::Telegram
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/botkit/telegram`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'botkit-telegram'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install botkit-telegram
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/botkit-telegram. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Botkit::Telegram project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/botkit-telegram/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "./lib/botkit/telegram/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "botkit-telegram"
|
7
|
+
spec.version = Botkit::Telegram::VERSION
|
8
|
+
spec.authors = ["Nando Vieira"]
|
9
|
+
spec.email = ["fnando.vieira@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "A botkit for Telegram"
|
12
|
+
spec.description = spec.summary
|
13
|
+
spec.homepage = "https://rubygems.org/gems/botkit-telegram"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_dependency "botkit"
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler"
|
26
|
+
spec.add_development_dependency "rake"
|
27
|
+
spec.add_development_dependency "minitest-utils"
|
28
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Botkit
|
4
|
+
module Telegram
|
5
|
+
require "botkit"
|
6
|
+
require "botkit/telegram/version"
|
7
|
+
require "botkit/telegram/bot"
|
8
|
+
require "botkit/telegram/message"
|
9
|
+
|
10
|
+
def self.new(api_token:)
|
11
|
+
Bot.new(api_token: api_token)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Botkit
|
4
|
+
module Telegram
|
5
|
+
class Bot < Botkit::Bot
|
6
|
+
attr_reader :api_token, :booted_at
|
7
|
+
attr_accessor :offset
|
8
|
+
|
9
|
+
def initialize(api_token:)
|
10
|
+
@api_token = api_token
|
11
|
+
@booted_at = Time.now.utc.to_i
|
12
|
+
@offset = 0
|
13
|
+
end
|
14
|
+
|
15
|
+
def call
|
16
|
+
context = self
|
17
|
+
|
18
|
+
response = Aitch.post do
|
19
|
+
url "https://api.telegram.org/bot#{context.api_token}/getUpdates"
|
20
|
+
params offset: context.offset,
|
21
|
+
allowed_updates: "message"
|
22
|
+
options expect: 200
|
23
|
+
end
|
24
|
+
|
25
|
+
messages = response.data["result"]
|
26
|
+
return if messages.empty?
|
27
|
+
|
28
|
+
self.offset = messages.last["update_id"] + 1
|
29
|
+
messages
|
30
|
+
.reject {|message| message.key?("edited_message") }
|
31
|
+
.select {|message| message.dig("message", "date") >= booted_at }
|
32
|
+
.map(&method(:prepare_message))
|
33
|
+
.each(&method(:handle_incoming_message))
|
34
|
+
end
|
35
|
+
|
36
|
+
def prepare_message(message)
|
37
|
+
params = parse_message(message.dig("message", "text"))
|
38
|
+
params = params.merge(raw: message,
|
39
|
+
channel_id: message.dig("message", "chat", "id"))
|
40
|
+
Message.new(**params)
|
41
|
+
end
|
42
|
+
|
43
|
+
def send_message(message, options = {})
|
44
|
+
context = self
|
45
|
+
|
46
|
+
message_params = {
|
47
|
+
text: message.text,
|
48
|
+
chat_id: message.channel_id
|
49
|
+
}.merge(options)
|
50
|
+
|
51
|
+
Aitch.post do
|
52
|
+
url "https://api.telegram.org/bot#{context.api_token}/sendMessage"
|
53
|
+
params message_params
|
54
|
+
options expect: 200
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def reply_message(message, reply, options = {})
|
59
|
+
send_message(reply, options.merge(reply_to_message_id: message.id))
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: botkit-telegram
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nando Vieira
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: botkit
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest-utils
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: A botkit for Telegram
|
70
|
+
email:
|
71
|
+
- fnando.vieira@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rubocop.yml"
|
78
|
+
- ".travis.yml"
|
79
|
+
- CODE_OF_CONDUCT.md
|
80
|
+
- Gemfile
|
81
|
+
- Gemfile.lock
|
82
|
+
- LICENSE.txt
|
83
|
+
- README.md
|
84
|
+
- Rakefile
|
85
|
+
- botkit-telegram.gemspec
|
86
|
+
- lib/botkit/telegram.rb
|
87
|
+
- lib/botkit/telegram/bot.rb
|
88
|
+
- lib/botkit/telegram/message.rb
|
89
|
+
- lib/botkit/telegram/version.rb
|
90
|
+
homepage: https://rubygems.org/gems/botkit-telegram
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata: {}
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options: []
|
96
|
+
require_paths:
|
97
|
+
- lib
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
requirements: []
|
109
|
+
rubyforge_project:
|
110
|
+
rubygems_version: 2.6.13
|
111
|
+
signing_key:
|
112
|
+
specification_version: 4
|
113
|
+
summary: A botkit for Telegram
|
114
|
+
test_files: []
|