miniric 0.3

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/lib/hola.rb +7 -0
  3. data/lib/miniric.rb +15 -0
  4. metadata +49 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: eb72678204be2683c825b4df00d406554a391ab59b66d1669845444b754335b1
4
+ data.tar.gz: c928d7bffadc4c1b9321beb7c9d91b35fd3e2f432db27bcbe3aa0c6f0aad6fda
5
+ SHA512:
6
+ metadata.gz: 51546e7f64d26f4ac4d218ed480c2f0aab9eb0029840e90ee8b10b88695e812d200e6ff450136ba2cb740005c05ccefa91a78b73af7b7c298cb3fcdf24dadaf3
7
+ data.tar.gz: 8adcf70d54c7418c1525ce85544b1040cb9f59f22651f49a2cb48b0615b7c33ab717c7c379e5a3d46cb04241a22b976ac3109f1642937d457fe4243bab199b6e
data/lib/hola.rb ADDED
@@ -0,0 +1,7 @@
1
+ class Hola
2
+
3
+ def self.hi
4
+ puts "Hello world!"
5
+ end
6
+
7
+ end
data/lib/miniric.rb ADDED
@@ -0,0 +1,15 @@
1
+ class Miniric
2
+
3
+ def self.hi
4
+ puts "Hello world!"
5
+ end
6
+
7
+ # yellow
8
+ def camerlengize(str)
9
+ "\033[1;33m#{str}\033[0m"
10
+ end
11
+ def camerlengo()
12
+ camerlengize(:palladius)
13
+ end
14
+
15
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: miniric
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.3'
5
+ platform: ruby
6
+ authors:
7
+ - Riccardo Carlesso
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-03-08 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: "This is a simple hello world gem copied from https://guides.rubygems.org/make-your-own-gem/.\n
14
+ \ Since I've been using echoe a number of times, this time I want to be able\n
15
+ \ to create a Gem without echoe so i can fix sakuric ASAP which is breaking\n
16
+ \ many environemnts.\n\n This gem tries to be able to give DEB and
17
+ COLORS as 'ric' without all\n 'ric' dependencies. Like a vanilla RIC version
18
+ I can include in my stuff.\n Possibly depending on lolcat :).\n "
19
+ email: palladiusbonton+miniric@gmaail.com
20
+ executables: []
21
+ extensions: []
22
+ extra_rdoc_files: []
23
+ files:
24
+ - lib/hola.rb
25
+ - lib/miniric.rb
26
+ homepage: https://rubygems.org/gems/miniric
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.1.4
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: MiniRic - Colors as a Service!
49
+ test_files: []