my_hello_gem_with_new_name 1.3.9

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: 584ebdfb2443fd5ee6918fc76a323c442ff473829791ebe9292f361eddf25609
4
+ data.tar.gz: aa6af42ace687eeffcf8d5d8115425cecadbd0764ee4e56009858ddbf57e962c
5
+ SHA512:
6
+ metadata.gz: 6bfa95050be52e63c999e84b39389fd2c9e0be12475fb042c833665d37149cdcae0a53955d5f3c7ceb7dfa33d6d47b7f6d3f6122b764f8d6e648299e2f8562f2
7
+ data.tar.gz: 81e84ecb4ea55b224880124489720e13fdbd785eed14a4b0a924be05f03247b90f7b51c772b3fac750462bec6c215ad3919dd95195847ba9bb0ff85097dfaeb9
data/lib/exported.rb ADDED
@@ -0,0 +1,5 @@
1
+ class Exported
2
+ def self.abcd
3
+ p 'I AM PUBLIC METHOD'
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ module HelloGem
2
+ class Expose
3
+ def self.abcd
4
+ p 'I AM PUBLIC METHOD'
5
+ end
6
+ end
7
+ end
8
+
@@ -0,0 +1,5 @@
1
+ class Hola
2
+ def self.hi
3
+ puts "Hello world!"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: my_hello_gem_with_new_name
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.9
5
+ platform: ruby
6
+ authors:
7
+ - Saurav
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-07-11 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/exported.rb
20
+ - lib/hello_gem/expose.rb
21
+ - lib/hello_gem/hello.rb
22
+ homepage: https://rubygems.org/gems/hola
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubygems_version: 3.4.5
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Hola!
45
+ test_files: []