telegram_web_proxy 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e0221ceff720203a7b08fe045e9684c360cfb48f
4
+ data.tar.gz: aef6774e3478babe78d39a60e19d74ca51245aaa
5
+ SHA512:
6
+ metadata.gz: 52669a4dcc4b0d0572fa0326135d52b60b4f78d6acf01b5d096a35d70c0ad397a5065955ab0d5f900f3e4ae12f4ce80a8555e0d73a9eab073e70c8192c281723
7
+ data.tar.gz: 22e08f3d19b333b3a04f6ea14eb310fe044559c08d335b1f96f9de65fcc76cff81e22f099c2c1182eba8704e73690d46928b5c046cad15255d427e5e2ed7223c
@@ -0,0 +1,20 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*.log
16
+ /tmp
17
+
18
+ # Ignore all temporary emacs files
19
+ *~
20
+ .#*
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.1
5
+ before_install: gem install bundler -v 1.14.6
@@ -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 x86d0cent@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
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in telegram_web_proxy.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 V_M
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.
@@ -0,0 +1,41 @@
1
+ # TelegramWebProxy
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/telegram_web_proxy`. 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 'telegram_web_proxy'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install telegram_web_proxy
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 spec` 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]/telegram_web_proxy. 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
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "telegram_web_proxy"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,32 @@
1
+ require 'telegram/bot'
2
+ require 'uri'
3
+ require 'rest-client'
4
+ require 'sanitize'
5
+
6
+ class TelegramWebProxy
7
+ attr_accessor :bot
8
+
9
+ def initialize(bot)
10
+ self.bot = bot
11
+ end
12
+
13
+ def message_processors
14
+ @message_processors ||= {}
15
+ end
16
+
17
+ def process(message)
18
+ chat = get_chat(message)
19
+ message_processors[chat.id] ||= MessageProcessor.new(bot, chat)
20
+ message_processors[chat.id].process(message)
21
+ end
22
+
23
+ private
24
+ def get_chat(message)
25
+ message.respond_to?(:chat) ? message.chat : message.message.chat
26
+ end
27
+ end
28
+
29
+ require File.dirname(__FILE__) + '/telegram_web_proxy/message_processor'
30
+ require File.dirname(__FILE__) + '/telegram_web_proxy/page_fetcher'
31
+ require File.dirname(__FILE__) + '/telegram_web_proxy/keyboard_generator'
32
+ require File.dirname(__FILE__) + '/telegram_web_proxy/version'
@@ -0,0 +1,63 @@
1
+ TelegramWebProxy::KeyboardGenerator = Struct.new(:fragments_number, :current_fragment)
2
+ class TelegramWebProxy::KeyboardGenerator
3
+ MAX_BUTTONS = 8
4
+
5
+
6
+ # @return [Telegram::Bot::Types::InlineKeyboardMarkup]
7
+ def generate
8
+ @keyboard ||= Telegram::Bot::Types::InlineKeyboardMarkup.new(inline_keyboard: build_keyboard)
9
+ end
10
+
11
+ private
12
+
13
+ def build_keyboard
14
+ [page_numbers.map{|i| new_button(i)}]
15
+ end
16
+
17
+ def page_numbers
18
+ if fragments_number <= MAX_BUTTONS
19
+ full_visible
20
+ elsif current_fragment <= MAX_BUTTONS / 2 - 1
21
+ beginning_visible
22
+ elsif (fragments_number - current_fragment) <= MAX_BUTTONS / 2
23
+ ending_visible
24
+ else
25
+ middle_visible
26
+ end
27
+ end
28
+
29
+ def full_visible
30
+ 0 .. fragments_number - 1
31
+ end
32
+
33
+ def beginning_visible
34
+ (0..MAX_BUTTONS - 3).to_a + [fragments_number - 1]
35
+ end
36
+
37
+ def middle_visible
38
+ range = MAX_BUTTONS / 4
39
+ [0] + (current_fragment - range .. current_fragment + range).to_a + [fragments_number - 1]
40
+ end
41
+
42
+ def ending_visible
43
+ [0] + (fragments_number - MAX_BUTTONS + 2 .. fragments_number - 1).to_a
44
+ end
45
+
46
+ private
47
+ def new_button(idx)
48
+ Telegram::Bot::Types::InlineKeyboardButton.new(text: button_text(idx),
49
+ callback_data: "/f #{idx}")
50
+ end
51
+
52
+ def button_text(idx)
53
+ if idx == current_fragment
54
+ ">#{idx + 1}<"
55
+ elsif idx.zero?
56
+ '1|'
57
+ elsif idx == fragments_number - 1
58
+ "|#{idx + 1}"
59
+ else
60
+ idx + 1
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,102 @@
1
+ TelegramWebProxy::MessageProcessor = Struct.new(:bot, :chat)
2
+
3
+ class TelegramWebProxy::MessageProcessor
4
+ attr_accessor :message, :page
5
+
6
+ def process(message)
7
+ self.message = message
8
+ if message.instance_of? Telegram::Bot::Types::CallbackQuery
9
+ process_callback
10
+ else
11
+ process_message
12
+ end
13
+ end
14
+
15
+ def process_callback
16
+ command, args = message.data.split ' '
17
+ case command
18
+ when '/f'
19
+ send_fragment(args.to_i)
20
+ end
21
+ end
22
+
23
+ def process_message
24
+ command, args = message.text.split(' ', 2)
25
+ case command
26
+ when '/h'
27
+ send_text(text: "Supported requests: \n/h - help \n/o URL (or just URL without /o) - open URL\n/s REQUEST - search with DuckDuckGo\n/e - echo\n/t - just a test")
28
+ when '/o'
29
+ #puts "Opening page: #{args}"
30
+ send_large_html(TelegramWebProxy::PageFetcher.new(args).get)
31
+ when '/s'
32
+ # puts "Search for: #{args}"
33
+ send_large_html(TelegramWebProxy::PageFetcher.new('https://duckduckgo.com/lite').post(q: args))
34
+ when '/e'
35
+ # puts "Echo: #{args}"
36
+ send_text(text: args)
37
+ when '/f' #actually user shouldn't use this manually, see #process_callback
38
+ send_fragment(args.to_i)
39
+ when '/'
40
+ puts 'Do nothing'
41
+ when '/t'
42
+ text = "A ! <a href='tg:msg?text=test&to=wprox_bot'> click here</a> <a href='https://techcrunch.com/2017/07/14/startup-battlefield-application-deadline-extended-for-disrupt-sf-2/'>TC instant view</a> <a href='http://reddit.com'>Reddit</a>."
43
+ send_text(text: text)#, parse_mode: 'HTML', reply_markup: markup)
44
+ else
45
+ if true #just url given
46
+ puts "Trying to open page: #{command}"
47
+ send_large_html(TelegramWebProxy::PageFetcher.new(command).get)
48
+ end
49
+ end
50
+ end
51
+
52
+ private
53
+
54
+ def send_text(text:, reply_markup: nil, parse_mode: 'HTML')
55
+ bot.api.send_message(chat_id: chat.id,
56
+ text: text,
57
+ parse_mode: parse_mode,
58
+ reply_markup: reply_markup)
59
+ end
60
+
61
+ # Sends a fragment of the previously fetched web page to specified chat
62
+ #
63
+ # @param chat_id [Integer]
64
+ # @param fragment [Integer] the number of the fragment to send
65
+ #
66
+ def send_fragment(fragment)
67
+ keyboard_markup = TelegramWebProxy::KeyboardGenerator.new(page.size, fragment).generate
68
+ begin
69
+ send_text(text: page[fragment], reply_markup: keyboard_markup)
70
+ rescue Telegram::Bot::Exceptions::ResponseError => e
71
+ if e.error_code.to_s == '400'
72
+ text = "OOPS! Something wrong with fragment #{fragment + 1}. Here is a previous fragment: \n" + page[fragment - 1]
73
+ send_text(text: text, reply_markup: keyboard_markup)
74
+ else
75
+ send_text(text: "Error while sending fragment #{fragment + 1}")
76
+ end
77
+ end
78
+ end
79
+
80
+ def split_into_parts(page)
81
+ result = []
82
+ last_symbol = page.size - 1
83
+ fragment_size = 4096
84
+ start_pos = end_pos = 0
85
+ while end_pos < last_symbol
86
+ end_pos = [start_pos + fragment_size - 1, last_symbol].min
87
+ while !Nokogiri::XML("<e>#{page[start_pos..end_pos]}</e>").errors.empty?
88
+ end_pos -= 1
89
+ end
90
+ result << page[start_pos..end_pos] if start_pos < end_pos
91
+ start_pos = end_pos + 1
92
+ end
93
+ result
94
+ end
95
+
96
+
97
+ # Splits
98
+ def send_large_html(doc)
99
+ self.page = split_into_parts(doc)
100
+ send_fragment(0)
101
+ end
102
+ end
@@ -0,0 +1,50 @@
1
+ TelegramWebProxy::PageFetcher = Struct.new(:url)
2
+
3
+ class TelegramWebProxy::PageFetcher
4
+ HTTP_USER_AGENT = 'ELinks/0.13.GIT (textmode; Linux 2.6.29 i686; 119x51-2)'
5
+
6
+ def get
7
+ result = RestClient.get(url, user_agent: HTTP_USER_AGENT)
8
+ fix_relative_urls(sanitize_page(result.body), url)
9
+ end
10
+
11
+ def post(data)
12
+ result = RestClient.post(url, data, user_agent: HTTP_USER_AGENT)
13
+ fix_relative_urls(sanitize_page(result.body), url)
14
+ end
15
+
16
+ private
17
+ # Takes out most of HTML tags and unnecesary whitespaces
18
+ def sanitize_page(body)
19
+ Sanitize.fragment(body,
20
+ # these tags are allowed for Teregram, however,
21
+ # nested tags are not allowed.
22
+ # Would be great to resolve this issue later.
23
+ # elements: ['b', 'strong', 'i', 'em', 'a', 'code', 'pre'],
24
+ elements: ['a'],
25
+ attributes: {'a' => ['href']},
26
+ remove_contents: [:script, :style, :img],
27
+ whitespace_elements: {
28
+ 'br' => {before: "\n", after: ""},
29
+ 'div' => {before: "\n", after: "\n"},
30
+ 'p' => {before: "\n", after: "\n"}
31
+ }).
32
+ gsub(/\t+/, " ").
33
+ gsub(/ +/, " ").
34
+ gsub(/\n+/, "\n").
35
+ gsub(/( \n)+/, " \n").
36
+ gsub("\n \n", "\n")
37
+ end
38
+
39
+
40
+ # Replaces relative urls to absolute.
41
+ #
42
+ # @param text [String] original text
43
+ # @param url [String] url from where the page was fetched
44
+ # @return [String]
45
+ def fix_relative_urls(text, url)
46
+ uri = URI.parse(url)
47
+ text.gsub('ref="/', "ref=\"#{uri.scheme || 'http'}://#{uri.host || uri.path}/")
48
+ end
49
+
50
+ end
@@ -0,0 +1,3 @@
1
+ class TelegramWebProxy
2
+ VERSION = "0.1.0"
3
+ end
@@ -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 'telegram_web_proxy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "telegram_web_proxy"
8
+ spec.version = TelegramWebProxy::VERSION
9
+ spec.authors = ["Vladimir Maslov"]
10
+ spec.email = ["x86d0cent@gmail.com"]
11
+
12
+ spec.summary = %q{Web proxy for Telegram}
13
+ spec.description = %q{A simple web proxy bot for Telegram}
14
+ spec.homepage = "https://gitlab.com/x86d0cent/telegram_web_proxy"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against " \
23
+ # "public gem pushes."
24
+ # end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.14"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "rspec", "~> 3.0"
36
+
37
+ spec.add_dependency 'rest-client', '~> 2.0'
38
+ spec.add_dependency 'sanitize', '~> 4.5'
39
+ spec.add_dependency 'telegram-bot-ruby', '~> 0.8.0'
40
+
41
+ end
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: telegram_web_proxy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Vladimir Maslov
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-08-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rest-client
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sanitize
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '4.5'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '4.5'
83
+ - !ruby/object:Gem::Dependency
84
+ name: telegram-bot-ruby
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.8.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.8.0
97
+ description: A simple web proxy bot for Telegram
98
+ email:
99
+ - x86d0cent@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".travis.yml"
107
+ - CODE_OF_CONDUCT.md
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - bin/console
113
+ - bin/setup
114
+ - lib/telegram_web_proxy.rb
115
+ - lib/telegram_web_proxy/keyboard_generator.rb
116
+ - lib/telegram_web_proxy/message_processor.rb
117
+ - lib/telegram_web_proxy/page_fetcher.rb
118
+ - lib/telegram_web_proxy/version.rb
119
+ - telegram_web_proxy.gemspec
120
+ homepage: https://gitlab.com/x86d0cent/telegram_web_proxy
121
+ licenses:
122
+ - MIT
123
+ metadata: {}
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ requirements: []
139
+ rubyforge_project:
140
+ rubygems_version: 2.6.11
141
+ signing_key:
142
+ specification_version: 4
143
+ summary: Web proxy for Telegram
144
+ test_files: []