telegrambot 1.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 +7 -0
- data/.gitignore +10 -0
- data/.gitlab-ci.yml +25 -0
- data/.rspec +2 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/Guardfile +6 -0
- data/LICENSE +674 -0
- data/README.md +74 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/telegrambot.rb +9 -0
- data/lib/telegrambot/api.rb +89 -0
- data/lib/telegrambot/client.rb +18 -0
- data/lib/telegrambot/exceptions.rb +1 -0
- data/lib/telegrambot/exceptions/response_error.rb +28 -0
- data/lib/telegrambot/types.rb +26 -0
- data/lib/telegrambot/types/audio.rb +10 -0
- data/lib/telegrambot/types/base.rb +18 -0
- data/lib/telegrambot/types/callback_query.rb +9 -0
- data/lib/telegrambot/types/chat.rb +10 -0
- data/lib/telegrambot/types/chat_member.rb +6 -0
- data/lib/telegrambot/types/contact.rb +8 -0
- data/lib/telegrambot/types/document.rb +9 -0
- data/lib/telegrambot/types/file.rb +7 -0
- data/lib/telegrambot/types/force_reply.rb +6 -0
- data/lib/telegrambot/types/inline_keyboard_button.rb +8 -0
- data/lib/telegrambot/types/inline_keyboard_markup.rb +15 -0
- data/lib/telegrambot/types/inline_query.rb +9 -0
- data/lib/telegrambot/types/inline_query_result_article.rb +15 -0
- data/lib/telegrambot/types/inline_query_result_audio.rb +12 -0
- data/lib/telegrambot/types/inline_query_result_cached_audio.rb +9 -0
- data/lib/telegrambot/types/inline_query_result_cached_document.rb +12 -0
- data/lib/telegrambot/types/inline_query_result_cached_gif.rb +11 -0
- data/lib/telegrambot/types/keyboard_button.rb +7 -0
- data/lib/telegrambot/types/location.rb +6 -0
- data/lib/telegrambot/types/message.rb +53 -0
- data/lib/telegrambot/types/message_entity.rb +9 -0
- data/lib/telegrambot/types/photo_size.rb +8 -0
- data/lib/telegrambot/types/reply_keyboard_hide.rb +6 -0
- data/lib/telegrambot/types/reply_keyboard_markup.rb +8 -0
- data/lib/telegrambot/types/sticker.rb +10 -0
- data/lib/telegrambot/types/update.rb +10 -0
- data/lib/telegrambot/types/user.rb +8 -0
- data/lib/telegrambot/types/user_profile_photos.rb +6 -0
- data/lib/telegrambot/types/venue.rb +8 -0
- data/lib/telegrambot/types/video.rb +11 -0
- data/lib/telegrambot/types/voice.rb +8 -0
- data/lib/telegrambot/version.rb +3 -0
- data/telegrambot.gemspec +41 -0
- metadata +250 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
module Telegrambot::Type
|
|
2
|
+
class InlineQueryResultAudio < Base
|
|
3
|
+
attribute :type, String, default: 'audio'
|
|
4
|
+
attribute :id, String
|
|
5
|
+
attribute :audio_url, String
|
|
6
|
+
attribute :title, String
|
|
7
|
+
attribute :performer, String
|
|
8
|
+
attribute :audio_duration, Integer
|
|
9
|
+
attribute :reply_markup, InlineKeyboardMarkup
|
|
10
|
+
attribute :input_message_content, InputMessageContent
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
module Telegrambot::Type
|
|
2
|
+
class InlineQueryResultCachedAudio < Base
|
|
3
|
+
attribute :type, String, default: 'audio'
|
|
4
|
+
attribute :id, String
|
|
5
|
+
attribute :audio_file_id, String
|
|
6
|
+
attribute :reply_markup, InlineKeyboardMarkup
|
|
7
|
+
attribute :input_message_content, InputMessageContent
|
|
8
|
+
end
|
|
9
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
module Telegrambot::Type
|
|
2
|
+
class InlineQueryResultCachedDocument < Base
|
|
3
|
+
attribute :type, String, default: 'document'
|
|
4
|
+
attribute :id, String
|
|
5
|
+
attribute :title, String
|
|
6
|
+
attribute :document_file_id, String
|
|
7
|
+
attribute :description, String
|
|
8
|
+
attribute :caption, String
|
|
9
|
+
attribute :reply_markup, InlineKeyboardMarkup
|
|
10
|
+
attribute :input_message_content, InputMessageContent
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
module Telegrambot::Type
|
|
2
|
+
class InlineQueryResultCachedGif < Base
|
|
3
|
+
attribute :type, String, default: 'gif'
|
|
4
|
+
attribute :id, String
|
|
5
|
+
attribute :gif_file_id, String
|
|
6
|
+
attribute :title, String
|
|
7
|
+
attribute :caption, String
|
|
8
|
+
attribute :reply_markup, InlineKeyboardMarkup
|
|
9
|
+
attribute :input_message_content, InputMessageContent
|
|
10
|
+
end
|
|
11
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
module Telegrambot::Types
|
|
2
|
+
class Message < Base
|
|
3
|
+
attribute :message_id, Integer
|
|
4
|
+
attribute :from, User
|
|
5
|
+
attribute :date, Integer
|
|
6
|
+
attribute :chat, Chat
|
|
7
|
+
attribute :forward_from, User
|
|
8
|
+
attribute :forward_from_chat, Chat
|
|
9
|
+
attribute :forward_date, Integer
|
|
10
|
+
attribute :reply_to_message, Message
|
|
11
|
+
attribute :edit_date, Integer
|
|
12
|
+
attribute :text, String
|
|
13
|
+
attribute :entities, Array[MessageEntity]
|
|
14
|
+
attribute :audio, Audio
|
|
15
|
+
attribute :document, Document
|
|
16
|
+
attribute :photo, Array[PhotoSize]
|
|
17
|
+
attribute :sticker, Sticker
|
|
18
|
+
attribute :video, Video
|
|
19
|
+
attribute :voice, Voice
|
|
20
|
+
attribute :caption, String
|
|
21
|
+
attribute :venuw, Venue
|
|
22
|
+
attribute :new_chat_member, User
|
|
23
|
+
attribute :left_chat_member, User
|
|
24
|
+
attribute :new_chat_title, String
|
|
25
|
+
attribute :delete_chat_photo, Boolean
|
|
26
|
+
attribute :group_chat_created, Boolean
|
|
27
|
+
attribute :supergroup_chat_created, Boolean
|
|
28
|
+
attribute :channel_chat_created, Boolean
|
|
29
|
+
attribute :migrate_to_chat_id, Integer
|
|
30
|
+
attribute :migrate_from_chat_id, Integer
|
|
31
|
+
attribute :pinned_message, Message
|
|
32
|
+
|
|
33
|
+
alias t_s text
|
|
34
|
+
# @return [Boolean]
|
|
35
|
+
def command?
|
|
36
|
+
entities.first.type == "bot_command"
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
# @return [String]
|
|
40
|
+
def command
|
|
41
|
+
if command?
|
|
42
|
+
text.slice(entities.first.offset, entities.first.length)
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# @return [String]
|
|
47
|
+
def arguments
|
|
48
|
+
if command?
|
|
49
|
+
text.gsub(command, '').strip
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module Telegrambot::Types
|
|
2
|
+
class Update < Base
|
|
3
|
+
attribute :update_id, Integer
|
|
4
|
+
attribute :message, Message
|
|
5
|
+
attribute :edited_message, Message
|
|
6
|
+
# attribute :inline_query, InlineQuery
|
|
7
|
+
# attribute :chosen_inline_result, ChosenInlineResult
|
|
8
|
+
attribute :callback_query, CallbackQuery
|
|
9
|
+
end
|
|
10
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
module Telegrambot::Types
|
|
2
|
+
class Video < Base
|
|
3
|
+
attribute :file_id, String
|
|
4
|
+
attribute :width, Integer
|
|
5
|
+
attribute :height, Integer
|
|
6
|
+
attribute :duration, Integer
|
|
7
|
+
attribute :thumb, PhotoSize
|
|
8
|
+
attribute :mime_type, String
|
|
9
|
+
attribute :file_size, Integer
|
|
10
|
+
end
|
|
11
|
+
end
|
data/telegrambot.gemspec
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'telegrambot/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "telegrambot"
|
|
8
|
+
spec.version = Telegrambot::VERSION
|
|
9
|
+
spec.authors = ["Mijail Rondon"]
|
|
10
|
+
spec.email = ['mijail.rondon@gmail.com']
|
|
11
|
+
spec.license = "GPL-3.0"
|
|
12
|
+
spec.summary = "Ruby wrapper for Telegrambot's Bot API"
|
|
13
|
+
spec.homepage = 'https://github.com/mijailr/telegrambot'
|
|
14
|
+
|
|
15
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
16
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
17
|
+
if spec.respond_to?(:metadata)
|
|
18
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
|
19
|
+
else
|
|
20
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
24
|
+
spec.bindir = "exe"
|
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
26
|
+
spec.require_paths = ["lib"]
|
|
27
|
+
|
|
28
|
+
spec.add_dependency 'faraday', '~> 0.9.2'
|
|
29
|
+
spec.add_dependency 'virtus', '~> 1.0'
|
|
30
|
+
|
|
31
|
+
spec.add_development_dependency 'bundler', '~> 1.9'
|
|
32
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
|
33
|
+
spec.add_development_dependency 'pry', '~> 0.10'
|
|
34
|
+
spec.add_development_dependency 'rubocop', '~> 0.42'
|
|
35
|
+
spec.add_development_dependency 'guard', '~> 2.14'
|
|
36
|
+
spec.add_development_dependency 'guard-rspec', '~> 4.7'
|
|
37
|
+
spec.add_development_dependency 'factory_girl', '~> 4.7'
|
|
38
|
+
spec.add_development_dependency 'rspec', '~> 3.4'
|
|
39
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 1.4'
|
|
40
|
+
|
|
41
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: telegrambot
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.1.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Mijail Rondon
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-09-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: faraday
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.9.2
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.9.2
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: virtus
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: bundler
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.9'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.9'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '10.0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '10.0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: pry
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0.10'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0.10'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rubocop
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.42'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.42'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: guard
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '2.14'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '2.14'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: guard-rspec
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '4.7'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '4.7'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: factory_girl
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '4.7'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '4.7'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: rspec
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - "~>"
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '3.4'
|
|
146
|
+
type: :development
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - "~>"
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '3.4'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: rubocop-rspec
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '1.4'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - "~>"
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '1.4'
|
|
167
|
+
description:
|
|
168
|
+
email:
|
|
169
|
+
- mijail.rondon@gmail.com
|
|
170
|
+
executables: []
|
|
171
|
+
extensions: []
|
|
172
|
+
extra_rdoc_files: []
|
|
173
|
+
files:
|
|
174
|
+
- ".gitignore"
|
|
175
|
+
- ".gitlab-ci.yml"
|
|
176
|
+
- ".rspec"
|
|
177
|
+
- ".travis.yml"
|
|
178
|
+
- CODE_OF_CONDUCT.md
|
|
179
|
+
- Gemfile
|
|
180
|
+
- Guardfile
|
|
181
|
+
- LICENSE
|
|
182
|
+
- README.md
|
|
183
|
+
- Rakefile
|
|
184
|
+
- bin/console
|
|
185
|
+
- bin/setup
|
|
186
|
+
- lib/telegrambot.rb
|
|
187
|
+
- lib/telegrambot/api.rb
|
|
188
|
+
- lib/telegrambot/client.rb
|
|
189
|
+
- lib/telegrambot/exceptions.rb
|
|
190
|
+
- lib/telegrambot/exceptions/response_error.rb
|
|
191
|
+
- lib/telegrambot/types.rb
|
|
192
|
+
- lib/telegrambot/types/audio.rb
|
|
193
|
+
- lib/telegrambot/types/base.rb
|
|
194
|
+
- lib/telegrambot/types/callback_query.rb
|
|
195
|
+
- lib/telegrambot/types/chat.rb
|
|
196
|
+
- lib/telegrambot/types/chat_member.rb
|
|
197
|
+
- lib/telegrambot/types/contact.rb
|
|
198
|
+
- lib/telegrambot/types/document.rb
|
|
199
|
+
- lib/telegrambot/types/file.rb
|
|
200
|
+
- lib/telegrambot/types/force_reply.rb
|
|
201
|
+
- lib/telegrambot/types/inline_keyboard_button.rb
|
|
202
|
+
- lib/telegrambot/types/inline_keyboard_markup.rb
|
|
203
|
+
- lib/telegrambot/types/inline_query.rb
|
|
204
|
+
- lib/telegrambot/types/inline_query_result_article.rb
|
|
205
|
+
- lib/telegrambot/types/inline_query_result_audio.rb
|
|
206
|
+
- lib/telegrambot/types/inline_query_result_cached_audio.rb
|
|
207
|
+
- lib/telegrambot/types/inline_query_result_cached_document.rb
|
|
208
|
+
- lib/telegrambot/types/inline_query_result_cached_gif.rb
|
|
209
|
+
- lib/telegrambot/types/keyboard_button.rb
|
|
210
|
+
- lib/telegrambot/types/location.rb
|
|
211
|
+
- lib/telegrambot/types/message.rb
|
|
212
|
+
- lib/telegrambot/types/message_entity.rb
|
|
213
|
+
- lib/telegrambot/types/photo_size.rb
|
|
214
|
+
- lib/telegrambot/types/reply_keyboard_hide.rb
|
|
215
|
+
- lib/telegrambot/types/reply_keyboard_markup.rb
|
|
216
|
+
- lib/telegrambot/types/sticker.rb
|
|
217
|
+
- lib/telegrambot/types/update.rb
|
|
218
|
+
- lib/telegrambot/types/user.rb
|
|
219
|
+
- lib/telegrambot/types/user_profile_photos.rb
|
|
220
|
+
- lib/telegrambot/types/venue.rb
|
|
221
|
+
- lib/telegrambot/types/video.rb
|
|
222
|
+
- lib/telegrambot/types/voice.rb
|
|
223
|
+
- lib/telegrambot/version.rb
|
|
224
|
+
- telegrambot.gemspec
|
|
225
|
+
homepage: https://github.com/mijailr/telegrambot
|
|
226
|
+
licenses:
|
|
227
|
+
- GPL-3.0
|
|
228
|
+
metadata:
|
|
229
|
+
allowed_push_host: https://rubygems.org
|
|
230
|
+
post_install_message:
|
|
231
|
+
rdoc_options: []
|
|
232
|
+
require_paths:
|
|
233
|
+
- lib
|
|
234
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
235
|
+
requirements:
|
|
236
|
+
- - ">="
|
|
237
|
+
- !ruby/object:Gem::Version
|
|
238
|
+
version: '0'
|
|
239
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
240
|
+
requirements:
|
|
241
|
+
- - ">="
|
|
242
|
+
- !ruby/object:Gem::Version
|
|
243
|
+
version: '0'
|
|
244
|
+
requirements: []
|
|
245
|
+
rubyforge_project:
|
|
246
|
+
rubygems_version: 2.5.1
|
|
247
|
+
signing_key:
|
|
248
|
+
specification_version: 4
|
|
249
|
+
summary: Ruby wrapper for Telegrambot's Bot API
|
|
250
|
+
test_files: []
|