hello_tea_pd 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: 1df81db01f4433a8c379acb007e5ee5f1aa100dc97a1d1f496fa15442c058aed
4
+ data.tar.gz: 397afde6c31c9384c65b476b0d7199ed2a0ddbcc4992fc0576a0c5aab7d0ca0a
5
+ SHA512:
6
+ metadata.gz: 180b2c1de25cbfd40e468793a57a785ec156fe2983fa63ff2a45c7da810b7ff46652b018b06de5845783e0d8d1cca494d0226d7f47435fb2511a2087fc3bf060
7
+ data.tar.gz: ade5501898217de2bbe8c77637545a145cc062845bf0a3120f20663f526f72bd32950c4db325b5ce51c8399f078aba42e49460a4e5cd5816f91f099e077c0933
data/LICENSE.txt ADDED
@@ -0,0 +1,4 @@
1
+ MIT License
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ ... (full MIT license text here) ...
data/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # HelloTeaPd
2
+
3
+ A simple RubyGem that greets the tea.xyz ecosystem 🍵
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ gem install hello_tea_pd
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ruby
14
+ require "hello_tea_pd"
15
+ HelloTeaPd.greet
16
+ ```
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module HelloTeaPd
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "hello_tea_pd/version"
4
+
5
+ module HelloTeaPd
6
+ def self.greet
7
+ puts "Hello from the Tea ecosystem! 🍵"
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hello_tea_pd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Your Name
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: This is a basic RubyGem that prints a greeting from the tea.xyz ecosystem.
13
+ email:
14
+ - your@email.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - LICENSE.txt
20
+ - README.md
21
+ - lib/hello_tea_pd.rb
22
+ - lib/hello_tea_pd/version.rb
23
+ homepage: https://github.com/your-username/hello_tea_pd
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ source_code_uri: https://github.com/your-username/hello_tea_pd
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.6.7
43
+ specification_version: 4
44
+ summary: A simple gem to say hello from the tea ecosystem
45
+ test_files: []