core4sk 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 +7 -0
- data/lib/core4sk.rb +54 -0
- metadata +59 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 619de9e7f6ffb1b2e1109cf446769c8fd6e20ca00d370d3cd0cc782546f0c364
|
4
|
+
data.tar.gz: aaa7dec26586370a320fa0a63b1b3a37f7a005259a8df65a7d4d6ccda8830521
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 62fed5eea06487d7301cdb4b065b70ed96cce6c136cb5fcfa3257b88e2581e44a1c0468a16301c4a8a3381acd9114bae6deb2d54234608134524b4eb539d3fe3
|
7
|
+
data.tar.gz: 9777cf28ddb4b9a74b25bcf4ee7be18cfb5aaee5290d7f020c4580018d739e710c3212d75c0ebc5f52f64448a4b3df16d5a9bb988b4afe453f273c1b62435b1e
|
data/lib/core4sk.rb
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "core4sk/version"
|
4
|
+
require "colorize"
|
5
|
+
|
6
|
+
module Core4sk
|
7
|
+
class Error < StandardError; end
|
8
|
+
|
9
|
+
end
|
10
|
+
def puts
|
11
|
+
puts
|
12
|
+
end
|
13
|
+
def gets
|
14
|
+
puts
|
15
|
+
end
|
16
|
+
|
17
|
+
class Core
|
18
|
+
def self.out(printout)
|
19
|
+
print printout
|
20
|
+
print "
|
21
|
+
"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
class Tools
|
26
|
+
def self.listen
|
27
|
+
gets.chomp
|
28
|
+
end
|
29
|
+
def self.colorout(coloroutput,color)
|
30
|
+
print coloroutput.colorize(color)
|
31
|
+
print "
|
32
|
+
"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
def eql(eqlone,eqltwo,eqlcode)
|
36
|
+
|
37
|
+
if eqlone == eqltwo
|
38
|
+
eqlcode
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
def plus(plusone,plustwo,pluscode)
|
44
|
+
|
45
|
+
if plusone > plustwo
|
46
|
+
pluscode
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
def minus(minusone,minustwo,minuscode)
|
51
|
+
if minusone < minustwo
|
52
|
+
minuscode
|
53
|
+
end
|
54
|
+
end
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: core4sk
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Iago Dorea
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-04-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: colorize
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.0'
|
27
|
+
description: Yes a lang inside a lang :)
|
28
|
+
email:
|
29
|
+
- iagodp08@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- lib/core4sk.rb
|
35
|
+
homepage: https://github.com/mioojo/
|
36
|
+
licenses:
|
37
|
+
- MIT
|
38
|
+
metadata:
|
39
|
+
homepage_uri: https://github.com/mioojo/
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options: []
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 2.6.0
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
requirements: []
|
55
|
+
rubygems_version: 3.4.10
|
56
|
+
signing_key:
|
57
|
+
specification_version: 4
|
58
|
+
summary: Basically an One Line Lang
|
59
|
+
test_files: []
|