amit_dummy_hash_test 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: efb6ba64f911b670ad5cd1a512d306a7246a25cf140221cffccce906a5fc9d98
4
+ data.tar.gz: 575f43a2515555edbbde75773a1c181fa668abd80fc7f1fd2ca769a772dc018b
5
+ SHA512:
6
+ metadata.gz: 5efa637f21a9f009a0a2915fe97945c906872d2a2dd0e6ce7e7025748856bb424a0afd7fdedb341d20ac5533f28a74fdee5b06af14ac618f77c0db8fd66e69b4
7
+ data.tar.gz: 86e186b7189fb4e756695e176d2a0d7870622be1c865c1898b06177333151f56f9d03268b665bfceede1362110fb08cdf930db02eed3b70c1b166c3e96b8bf99
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 amitge
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # amit_dummy_hash_test
2
+
3
+ This is a harmless Ruby gem for package hash-testing workflows. It contains no
4
+ malicious behavior, network access, or installation hooks.
5
+
6
+ ## Usage
7
+
8
+ ```ruby
9
+ require "amit_dummy_hash_test"
10
+
11
+ AmitDummyHashTest.print_message
12
+ ```
13
+
14
+ Output:
15
+
16
+ ```text
17
+ This just prints a hash dummy test by amitge.
18
+ ```
@@ -0,0 +1,3 @@
1
+ module AmitDummyHashTest
2
+ VERSION = "0.1.0".freeze
3
+ end
@@ -0,0 +1,10 @@
1
+ require_relative "amit_dummy_hash_test/version"
2
+
3
+ # Harmless functionality for hash-testing workflows.
4
+ module AmitDummyHashTest
5
+ MESSAGE = "This just prints a hash dummy test by amitge.".freeze
6
+
7
+ def self.print_message
8
+ puts MESSAGE
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: amit_dummy_hash_test
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - amitge
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-07-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A non-malicious dummy package that prints a hash-test message.
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - LICENSE.txt
20
+ - README.md
21
+ - lib/amit_dummy_hash_test.rb
22
+ - lib/amit_dummy_hash_test/version.rb
23
+ homepage: https://rubygems.org/gems/amit_dummy_hash_test
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ rubygems_mfa_required: 'true'
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 2.6.0
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.0.3.1
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Harmless dummy gem for hash testing
47
+ test_files: []