bot_machine 0.0.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 +7 -0
- data/exe/bot_machine +4 -0
- data/lib/bot_machine/version.rb +19 -0
- data/lib/bot_machine.rb +9 -0
- metadata +50 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 694fd317596fc01fed16178597dfe442f4137c690944a2cacf7edf8ada91c42a
|
4
|
+
data.tar.gz: f22ccbad2c9477db0febe593a113d10f4d91c2dcaa7df70d0f8cbaf6c16d8f37
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 848c75c346292e8ed43ccada99fed5f003a9a26d14fbb2259799a8deb29f1e1786e691d4b81fd40b229c01e32b0906b47e398e0e854f55ff1a678229c9bf7b4c
|
7
|
+
data.tar.gz: d553622275447a1578eee4b6f4d8b20bea6ede2bbb7add0d6932c25e281c0f71b303aea08f3a5532bfa2de7ee4d7e67590a8effe231ba0f128d1ee06132e7456
|
data/exe/bot_machine
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module BotMachine
|
4
|
+
# Gem version module
|
5
|
+
module Version
|
6
|
+
# x.0.0 changes that will break existing users code if they update
|
7
|
+
MAJOR = 0
|
8
|
+
# 0.x.0 changes, such as new functionality/features
|
9
|
+
MINOR = 0
|
10
|
+
# 0.0.x changes, such as small bug fixes
|
11
|
+
PATCH = 0
|
12
|
+
|
13
|
+
# Get current gem version
|
14
|
+
# @return [String]
|
15
|
+
def self.current
|
16
|
+
"#{MAJOR}.#{MINOR}.#{PATCH}"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/lib/bot_machine.rb
ADDED
metadata
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bot_machine
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alex Merkulov
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-05-25 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Stub DESCRIPTION for gem bot_machine
|
14
|
+
email:
|
15
|
+
- rormercury@gmail.com
|
16
|
+
executables:
|
17
|
+
- bot_machine
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- exe/bot_machine
|
22
|
+
- lib/bot_machine.rb
|
23
|
+
- lib/bot_machine/version.rb
|
24
|
+
homepage: https://github.com/bf-rb/bot_machine
|
25
|
+
licenses:
|
26
|
+
- MIT
|
27
|
+
metadata:
|
28
|
+
homepage_uri: https://github.com/bf-rb/bot_machine
|
29
|
+
source_code_uri: https://github.com/bf-rb/bot_machine
|
30
|
+
changelog_uri: https://github.com/bf-rb/bot_machine
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
require_paths:
|
34
|
+
- lib
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: 2.6.0
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
requirements: []
|
46
|
+
rubygems_version: 3.3.14
|
47
|
+
signing_key:
|
48
|
+
specification_version: 4
|
49
|
+
summary: Stub gem bot_machine
|
50
|
+
test_files: []
|