ConsoleGL 1.0.7 → 1.0.8
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 +4 -4
- data/lib/consolegl.rb +4 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e49229fcaab556178d15c0c4c8f46329ba856a8437eb772d19bdd77ef4c4db1
|
4
|
+
data.tar.gz: f79896204819d27bae9f159ac2bd51f0139032457de78494a4375045920cb766
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ca1ee935321b16005dad63a6b5194262680c14a2d1c65085d3b593b959460c3560f569a6be68840ae408d0aa4222669cac2fe5b2b684a61b6ff6602703b3dc2
|
7
|
+
data.tar.gz: 1b12c205df52803f582c33db72d355bf7913767bbc3b18b646542f12b7643f294805949f818254a893aa1fd95c07b432f9779e67b7eba6bbdd0fed7fb4c7a305
|
data/lib/consolegl.rb
CHANGED
@@ -56,7 +56,6 @@ class Color
|
|
56
56
|
|
57
57
|
end
|
58
58
|
|
59
|
-
|
60
59
|
class Console
|
61
60
|
## COLOR ##
|
62
61
|
|
@@ -148,11 +147,13 @@ class Console
|
|
148
147
|
|
149
148
|
|
150
149
|
|
151
|
-
def SetConsoleColor(value)
|
150
|
+
def self.SetConsoleColor(value)
|
152
151
|
system "COLOR " + value.to_s
|
153
152
|
end
|
154
153
|
|
155
|
-
def ResetConsoleColor()
|
154
|
+
def self.ResetConsoleColor()
|
156
155
|
system "COLOR 07"
|
157
156
|
end
|
157
|
+
|
158
|
+
|
158
159
|
end
|
metadata
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ConsoleGL
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Okistuff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-07-
|
11
|
+
date: 2020-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'Rendering Engine for Ruby kind of similar to OpenGL. It runs in the
|
14
|
-
console: 1.0.7 Updates:
|
14
|
+
console: 1.0.7 Updates: Fixed Bug'
|
15
15
|
email: okistuffyt@gmail.com
|
16
16
|
executables: []
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
20
|
- lib/consolegl.rb
|
21
|
-
homepage: https://
|
21
|
+
homepage: https://github.com/OkiStuff/ConsoleGL
|
22
22
|
licenses:
|
23
23
|
- MIT
|
24
24
|
metadata: {}
|
@@ -40,5 +40,5 @@ requirements: []
|
|
40
40
|
rubygems_version: 3.0.3
|
41
41
|
signing_key:
|
42
42
|
specification_version: 4
|
43
|
-
summary: Rendering Engine for Ruby
|
43
|
+
summary: Rendering Engine for Ruby
|
44
44
|
test_files: []
|