jfrog-curation-malicious-dummy 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: 991bc00677c19b882b9185a982b48de399d239e007701c4cfff9ee5a19b17ca7
4
+ data.tar.gz: 04f70a4000686bd8f1bd1118ad3768251c5dad5f4ce0ce3fa7f0e83475e64dfd
5
+ SHA512:
6
+ metadata.gz: 8f1ef6a60b842257cd5fbd030540acf9f52a4c181152af1390804795cd9e5f7a5b3997af1923beddaf0aeb3a3df3ed63633d5ff7ec75aa63fbc881239cf2306c
7
+ data.tar.gz: 66b55f7c51c9be33bc5f7b463856e68b287680a759f504bce043b9807b40f910d79b2416732ec64f4543d947d1539eb2855caec9709c1c6e6ded0e0250efbddc
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 geynis
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,14 @@
1
+ # jfrog-curation-malicious-dummy
2
+
3
+ This is a harmless, inert Ruby gem for testing package curation workflows.
4
+
5
+ It contains no malicious behavior, network access, installation hooks, or runtime
6
+ functionality.
7
+
8
+ ## Usage
9
+
10
+ ```ruby
11
+ require "jfrog/curation/malicious/dummy"
12
+
13
+ Jfrog::Curation::Malicious::Dummy::VERSION
14
+ ```
@@ -0,0 +1,9 @@
1
+ module Jfrog
2
+ module Curation
3
+ module Malicious
4
+ module Dummy
5
+ VERSION = "0.1.0".freeze
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ require_relative "dummy/version"
2
+
3
+ module Jfrog
4
+ module Curation
5
+ module Malicious
6
+ # Namespace for the harmless curation test package.
7
+ module Dummy
8
+ end
9
+ end
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jfrog-curation-malicious-dummy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - geynis
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, inert package used to test package curation workflows.
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - LICENSE.txt
20
+ - README.md
21
+ - lib/jfrog/curation/malicious/dummy.rb
22
+ - lib/jfrog/curation/malicious/dummy/version.rb
23
+ homepage: https://rubygems.org/gems/jfrog-curation-malicious-dummy
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 package curation testing
47
+ test_files: []