royalprint 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/lib/royaprint.rb +43 -0
  4. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: de27d0fc0bf6f2aaee539af5d9b4a0e6ddae198d6e3e59e27f1add094e75e06c
4
+ data.tar.gz: 15b4e60034a6133827bc9b709adca7c8f69a7b56441853975a950b2ecdbe6c11
5
+ SHA512:
6
+ metadata.gz: 59943dd5e80eb9b1d0b148394d1f3368e4b5117ba7a46b72b557e9e834d47c73f7f2c45e210f56583ecffba97eb49018717be5d84e2c99edb9b58192086d3093
7
+ data.tar.gz: 3a6931eb7f635c93e4942b7fb9a366bb66d7c4a267cddf570a44236e4854d001e76787834711d1c7f13f31c7be2c8cbbefa9836cac2a1d77bd53f3df1f6f6291
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ @Copyright (c) 2024 Codebabel
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/lib/royaprint.rb ADDED
@@ -0,0 +1,43 @@
1
+ def go(x)
2
+ puts(x)
3
+ end
4
+
5
+ def log(x)
6
+ puts(x)
7
+ end
8
+
9
+ def show(x)
10
+ puts(x)
11
+ end
12
+
13
+ def echo(x)
14
+ puts(x)
15
+ end
16
+
17
+ def display(x)
18
+ puts(x)
19
+ end
20
+
21
+ def put_line(x)
22
+ puts(x)
23
+ end
24
+
25
+ def cout(x)
26
+ puts(x)
27
+ end
28
+
29
+ def printf(x)
30
+ puts(x)
31
+ end
32
+
33
+ def printin(x)
34
+ puts(x)
35
+ end
36
+
37
+ def println(x)
38
+ puts(x)
39
+ end
40
+
41
+ def xRails(x)
42
+ puts(x)
43
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: royalprint
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - codebabel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: royalprint Ruby is perfect for simplifying the information that needs
14
+ to go to the console, similar to printing in C++ command cout, PHP echo, log("Hi"),
15
+ go("Hello mdf"), cout("whoami?"), puts ("She Knows").. and more.
16
+ email:
17
+ - codebabel.contact@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE.txt
23
+ - lib/royaprint.rb
24
+ homepage: ''
25
+ licenses:
26
+ - MIT
27
+ metadata: {}
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.4.10
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: royalprint Ruby
47
+ test_files: []