hello-mama 1.0.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +24 -0
  3. data/lib/hello-mama.rb +7 -0
  4. metadata +44 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b65e31ec6dae05addaa3b78bd42b5bd48eb0497eee1dfd7d62d4d8e092a93a81
4
+ data.tar.gz: fa780001d3db88c8986a3a2c1f0fa0bf44176f2e76e4c574116363eba665f7ae
5
+ SHA512:
6
+ metadata.gz: 8cc66031ba2b2571f58331542ea2362d230804f4a09ea673966498ffee87c2589af5bfe0efa7e4eb8db9876173c79e47279f6185be47ba0b64bdaffc990c71ca
7
+ data.tar.gz: b2b8f0689fe421684b70b46b1800dda38a842279d7e46e486532a96458c8cb961791385b16df0dbc0fe3ef8d7efec2e7e759706e220d40841249657899d44272
@@ -0,0 +1,24 @@
1
+ # HelloMama gem
2
+
3
+ A new way to say hello to anyone you want!
4
+
5
+ ### Usage
6
+
7
+ - install the gem with
8
+
9
+ ```
10
+ gem install hello-mama
11
+ ```
12
+
13
+ - Require it in your projects using
14
+
15
+ ```
16
+ require 'hello-mama'
17
+ ```
18
+
19
+ - Use it!
20
+
21
+ ```
22
+ HelloMama.say_hello_to('adebola')
23
+ // hello adebola!
24
+ ```
@@ -0,0 +1,7 @@
1
+ class HelloMama
2
+ def self.say_hello_to(name)
3
+ p 'hello' + ' ' +name + '!'
4
+ end
5
+ end
6
+
7
+
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hello-mama
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Adebola Adeniran
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-08-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A gem that says hello mama!
14
+ email: adebola.rb.js@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - README.md
20
+ - lib/hello-mama.rb
21
+ homepage: https://rubygems.org/gems/hello-mama
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubygems_version: 3.0.6
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: hallo mama
44
+ test_files: []