hello_world_tut 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c2eff565ffa267dc6afc3094ee4e0cd57a5c07bc509b48a498c15d99167f4009
4
+ data.tar.gz: 295ab6563b59663695ae7683cfdddf41ac1955396264b60b9dcdfa31b2df6bbe
5
+ SHA512:
6
+ metadata.gz: 3996e4eb8abc2fe2b32a0ab37ef922bdc98973cbde4d876b491a00fed93b89b21beca2a2135c7a6841b7ad89bd30447bd945ef1f892f0019eaf057ffabbcae66
7
+ data.tar.gz: 0e1c9b5a0f0df8ed72604fbfef245a0407bb564b24736ef97f1aab767a28a4a6d71ae6e565f154ded608a2c1ec1b306bb56491c02f557daff02b7df2e2b19fbc
data/exe/helloworldrb ADDED
@@ -0,0 +1,3 @@
1
+ require 'hello_world_tut'
2
+
3
+ puts "\e[5;38;2;0;200;0m#{HelloWorldTut::Greetings.hello}\e[0m"
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+ require_relative "hello_world_tut/version"
3
+ require_relative 'hello_world_tut/greetings'
4
+
5
+ module HelloWorldTut
6
+ end
@@ -0,0 +1,7 @@
1
+ module HelloWorldTut
2
+ module Greetings
3
+ def self.hello
4
+ "Hello world!"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module HelloWorldTut
4
+ VERSION = "0.1.0"
5
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hello_world_tut
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sourav Goswami
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-02-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A hello world gem for rubygems tutorial on YouTube
14
+ email:
15
+ - ruby-masterclass@pm.me
16
+ executables:
17
+ - helloworldrb
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - exe/helloworldrb
22
+ - lib/hello_world_tut.rb
23
+ - lib/hello_world_tut/greetings.rb
24
+ - lib/hello_world_tut/version.rb
25
+ homepage: https://github.com/Souravgoswami/rubygems_tut
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 1.9.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.2.7
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: A hello world gem for rubygems tutorial on YouTube
48
+ test_files: []