mtproto 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c498fa937d08bb1896de2e69cfa96130b5d4fb6b1dae44761f8251ef426a03b5
4
+ data.tar.gz: ffc71857dcdf59248a9fd41750110a632db075558a8362780439fba2fc751d56
5
+ SHA512:
6
+ metadata.gz: 88b02a01b90bbfe65077bf9b0318ad95559a3933cd735f4e9bb11eee254864479f20cb15edb52b3f3ba6b972e779f4367318742b2d165498161779628ec64643
7
+ data.tar.gz: 30c8ea708f0b32d17c0a621cb7251a7eb1ea34450ceb3036340bd9989a86dc294aedab892030b72def482e3690fc16669457233b60471d2c4a6eb325d15b1b4f
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.4.4
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MTProto
4
+ VERSION = '0.0.1'
5
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mtproto
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Artem Levenkov
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A Ruby library for Telegram MTProto protocol with TCP abridged transport
13
+ support
14
+ email:
15
+ - me@alev.pro
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".ruby-version"
21
+ - Rakefile
22
+ - lib/mtproto/version.rb
23
+ homepage: https://github.com/alev-pro/mtproto-ruby
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/alev-pro/mtproto-ruby
28
+ source_code_uri: https://github.com/alev-pro/mtproto-ruby
29
+ changelog_uri: https://github.com/alev-pro/mtproto-ruby/blob/main/CHANGELOG.md
30
+ rubygems_mfa_required: 'true'
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 3.4.4
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.6.7
46
+ specification_version: 4
47
+ summary: Ruby implementation of Telegram MTProto protocol
48
+ test_files: []