rubydium 0.1.0

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: c97622609c92a647d42a147d5f6d3b50b8d3f166364839e7457dfa801463677f
4
+ data.tar.gz: 383f1f95771e399b41b3155b55ae06cf3287005af7250d7bc4b14add9bdb12fa
5
+ SHA512:
6
+ metadata.gz: 1ad2ec41e84c6e36b910c5a403bda5e059f825831a9891ed6a5fc50e4d15e8630e9c84ac82425aae8c0f0138c256a8ff7ed44060c966d55112deb6b5aa60fc8b
7
+ data.tar.gz: efae72abbd1130732908a5832b3b487b238d15abea26c89ca086e234fb2be330f32a2fd4e5e2ec959acb010209e7d4618de9de6926feb006420f0e89555f75e3
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ rubydium-*.gem
data/.rubocop.yml ADDED
@@ -0,0 +1,7 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.1.2
3
+ NewCops: enable
4
+ Layout/LineLength:
5
+ Max: 100
6
+ Style/StringLiterals:
7
+ EnforcedStyle: double_quotes
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.2
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
6
+
7
+ ruby "~> 3.1", ">= 3.1.2"
8
+
9
+ gem "pry"
10
+ gem "rubocop"
11
+ gem "telegram-bot-ruby"
data/Gemfile.lock ADDED
@@ -0,0 +1,72 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ ast (2.4.2)
5
+ axiom-types (0.1.1)
6
+ descendants_tracker (~> 0.0.4)
7
+ ice_nine (~> 0.11.0)
8
+ thread_safe (~> 0.3, >= 0.3.1)
9
+ coderay (1.1.3)
10
+ coercible (1.0.0)
11
+ descendants_tracker (~> 0.0.1)
12
+ descendants_tracker (0.0.4)
13
+ thread_safe (~> 0.3, >= 0.3.1)
14
+ dry-inflector (1.0.0)
15
+ faraday (2.7.2)
16
+ faraday-net_http (>= 2.0, < 3.1)
17
+ ruby2_keywords (>= 0.0.4)
18
+ faraday-multipart (1.0.4)
19
+ multipart-post (~> 2)
20
+ faraday-net_http (3.0.2)
21
+ ice_nine (0.11.2)
22
+ json (2.6.3)
23
+ method_source (1.0.0)
24
+ multipart-post (2.2.3)
25
+ parallel (1.22.1)
26
+ parser (3.1.3.0)
27
+ ast (~> 2.4.1)
28
+ pry (0.14.1)
29
+ coderay (~> 1.1)
30
+ method_source (~> 1.0)
31
+ rainbow (3.1.1)
32
+ regexp_parser (2.6.1)
33
+ rexml (3.2.5)
34
+ rubocop (1.41.1)
35
+ json (~> 2.3)
36
+ parallel (~> 1.10)
37
+ parser (>= 3.1.2.1)
38
+ rainbow (>= 2.2.2, < 4.0)
39
+ regexp_parser (>= 1.8, < 3.0)
40
+ rexml (>= 3.2.5, < 4.0)
41
+ rubocop-ast (>= 1.23.0, < 2.0)
42
+ ruby-progressbar (~> 1.7)
43
+ unicode-display_width (>= 1.4.0, < 3.0)
44
+ rubocop-ast (1.24.0)
45
+ parser (>= 3.1.1.0)
46
+ ruby-progressbar (1.11.0)
47
+ ruby2_keywords (0.0.5)
48
+ telegram-bot-ruby (0.23.0)
49
+ dry-inflector
50
+ faraday (~> 2.0)
51
+ faraday-multipart (~> 1.0)
52
+ virtus (~> 2.0)
53
+ thread_safe (0.3.6)
54
+ unicode-display_width (2.3.0)
55
+ virtus (2.0.0)
56
+ axiom-types (~> 0.1)
57
+ coercible (~> 1.0)
58
+ descendants_tracker (~> 0.0, >= 0.0.3)
59
+
60
+ PLATFORMS
61
+ x86_64-linux
62
+
63
+ DEPENDENCIES
64
+ pry
65
+ rubocop
66
+ telegram-bot-ruby
67
+
68
+ RUBY VERSION
69
+ ruby 3.1.2p20
70
+
71
+ BUNDLED WITH
72
+ 2.3.26
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 bulgakke
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 @@
1
+ don't read me yet, i'm not ready
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rubydium
4
+ VERSION = "0.1.0"
5
+ end
data/lib/rubydium.rb ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rubydium
4
+ end
data/rubydium.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/rubydium/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rubydium"
7
+ spec.version = Rubydium::VERSION
8
+ spec.authors = ["bulgakke"]
9
+ spec.email = ["vvp835@yandex.ru"]
10
+
11
+ spec.summary = "An OO framework for building Telegram bots. That's the plan, at least."
12
+ # spec.description = "TODO: Write a longer description or delete this line."
13
+ spec.homepage = "https://github.com/bulgakke/rubydium"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
16
+
17
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/bulgakke/rubydium"
21
+ # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
26
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ # For more information and examples about making a new gem, checkout our
33
+ # guide at: https://bundler.io/guides/creating_gem.html
34
+ spec.metadata["rubygems_mfa_required"] = "true"
35
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubydium
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - bulgakke
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-12-27 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - vvp835@yandex.ru
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - ".rubocop.yml"
22
+ - ".ruby-version"
23
+ - Gemfile
24
+ - Gemfile.lock
25
+ - LICENSE
26
+ - README.md
27
+ - lib/rubydium.rb
28
+ - lib/rubydium/version.rb
29
+ - rubydium.gemspec
30
+ homepage: https://github.com/bulgakke/rubydium
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ homepage_uri: https://github.com/bulgakke/rubydium
35
+ source_code_uri: https://github.com/bulgakke/rubydium
36
+ rubygems_mfa_required: 'true'
37
+ post_install_message:
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 3.1.0
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubygems_version: 3.3.21
53
+ signing_key:
54
+ specification_version: 4
55
+ summary: An OO framework for building Telegram bots. That's the plan, at least.
56
+ test_files: []