telegram-support-bot 0.1.06 → 0.1.08

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.
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telegram-support-bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.06
4
+ version: 0.1.08
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Buslaev
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-26 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2026-02-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: redis
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.8'
13
27
  description: |-
14
28
  The telegram_support_bot gem provides Rails applications with an
15
29
  easy-to-integrate Telegram bot, designed to enhance customer support services.
@@ -28,6 +42,7 @@ extra_rdoc_files: []
28
42
  files:
29
43
  - ".idea/workspace.xml"
30
44
  - ".rspec"
45
+ - CHANGELOG.md
31
46
  - CODE_OF_CONDUCT.md
32
47
  - Gemfile
33
48
  - LICENSE.txt
@@ -40,14 +55,17 @@ files:
40
55
  - lib/telegram_support_bot/adapters/telegram_bot_ruby.rb
41
56
  - lib/telegram_support_bot/auto_away_scheduler.rb
42
57
  - lib/telegram_support_bot/configuration.rb
58
+ - lib/telegram_support_bot/state_store.rb
59
+ - lib/telegram_support_bot/state_stores/memory.rb
60
+ - lib/telegram_support_bot/state_stores/redis.rb
43
61
  - lib/telegram_support_bot/version.rb
62
+ - script/dev_poll.rb
44
63
  - sig/telegram_support_bot.rbs
45
- - telegram_support_bot.gemspec
46
64
  homepage: https://github.com/austerlitz/telegram_support_bot
47
65
  licenses:
48
66
  - MIT
49
67
  metadata: {}
50
- post_install_message:
68
+ post_install_message:
51
69
  rdoc_options: []
52
70
  require_paths:
53
71
  - lib
@@ -62,8 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
62
80
  - !ruby/object:Gem::Version
63
81
  version: '0'
64
82
  requirements: []
65
- rubygems_version: 3.2.3
66
- signing_key:
83
+ rubygems_version: 3.5.11
84
+ signing_key:
67
85
  specification_version: 4
68
86
  summary: A Rails gem for integrating a Telegram bot into your application for seamless
69
87
  support desk functionality.
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/telegram_support_bot/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'telegram-support-bot'
7
- spec.version = TelegramSupportBot::VERSION
8
- spec.authors = ['Max Buslaev']
9
- spec.email = ['max@buslaev.net']
10
-
11
- spec.summary = 'A Rails gem for integrating a Telegram bot into your application for seamless
12
- support desk functionality.'
13
- spec.description = 'The telegram_support_bot gem provides Rails applications with an
14
- easy-to-integrate Telegram bot, designed to enhance customer support services.
15
- By leveraging this gem, developers can swiftly add a Telegram-based support desk to their
16
- application, enabling direct communication between users and support agents through Telegram.
17
- Features include automatic message forwarding to a designated secret chat for support agents,
18
- the ability to reply directly from the secret chat to users, and customizable responses
19
- for common queries. This gem simplifies the process of setting up a robust support channel on one of
20
- the most popular messaging platforms, making it an ideal solution for businesses looking to improve
21
- their customer service experience.'
22
- spec.homepage = 'https://github.com/austerlitz/telegram_support_bot'
23
- spec.license = 'MIT'
24
- # spec.required_ruby_version = '>= 2.6.0'
25
-
26
- # Specify which files should be added to the gem when it is released.
27
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
- spec.files = Dir.chdir(__dir__) do
29
- `git ls-files -z`.split("\x0").reject do |f|
30
- (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
31
- end
32
- end
33
- spec.bindir = 'exe'
34
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
35
- spec.require_paths = ['lib']
36
-
37
- end