threadpilot-goodjob 0.0.1

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: 145afe28b6cba1b475d610404fffbac48e4e0af66c57f4ec7abfe217aa77976b
4
+ data.tar.gz: 158c5dc6366d144d122ea68366b1b1374e0d58801ee1e7993e9d0a85f5e6de7d
5
+ SHA512:
6
+ metadata.gz: 8f55b6cf11d37b4ceda945bb331639bdb19a3008a08c4dc29a73141cf4a4b67dbaf4b364f7b838f02999c7a6d298f69bedb3b333544b1ffef9be47ef3f90e2d6
7
+ data.tar.gz: 9792fb7dd11ac0fb2a5d58779a91f759f5f391b2bd91c65d8514c01dc088611092a31d2fbdbe7a062e07d964579ad4075d87f995f744c0bfe528bbf77f2ad0fd
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Nate Berkopec
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,60 @@
1
+ # threadpilot-placeholder
2
+
3
+ Public placeholder gems reserving the Threadpilot package names on RubyGems.org.
4
+
5
+ ## Reserved gem names
6
+
7
+ This repo exists to publish inert placeholder gems for these names:
8
+
9
+ - `threadpilot`
10
+ - `threadpilot-sidekiq`
11
+ - `threadpilot-puma`
12
+ - `threadpilot-goodjob`
13
+
14
+ The real Threadpilot gems are distributed privately from:
15
+
16
+ ```ruby
17
+ source "https://gems.speedshop.co/private" do
18
+ gem "threadpilot"
19
+ gem "threadpilot-puma"
20
+ gem "threadpilot-sidekiq"
21
+ end
22
+ ```
23
+
24
+ `threadpilot-goodjob` is currently reserved only. There is not currently a real `threadpilot-goodjob` gem.
25
+
26
+ ## Why this exists
27
+
28
+ These packages are published to RubyGems.org to reserve the names and prevent accidental or malicious third-party uploads.
29
+
30
+ Each placeholder gem:
31
+
32
+ - uses version `0.0.1`
33
+ - has no runtime dependencies
34
+ - shows a post-install message pointing to the private gem source
35
+ - exposes only a minimal namespace so `require` succeeds harmlessly
36
+
37
+ ## Development
38
+
39
+ ```bash
40
+ bundle install
41
+ bundle exec rake
42
+ bundle exec rake build
43
+ ```
44
+
45
+ ## Publishing
46
+
47
+ Build all four gems:
48
+
49
+ ```bash
50
+ bundle exec rake build
51
+ ```
52
+
53
+ Push them individually to RubyGems.org:
54
+
55
+ ```bash
56
+ gem push threadpilot-0.0.1.gem
57
+ gem push threadpilot-sidekiq-0.0.1.gem
58
+ gem push threadpilot-puma-0.0.1.gem
59
+ gem push threadpilot-goodjob-0.0.1.gem
60
+ ```
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Threadpilot
4
+ module Goodjob
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ThreadpilotPlaceholder
4
+ VERSION = "0.0.1"
5
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: threadpilot-goodjob
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nate Berkopec
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: |-
13
+ This is a placeholder gem published to reserve the threadpilot-goodjob name on RubyGems.org.
14
+ There is not currently a real threadpilot-goodjob gem available.
15
+ email:
16
+ - nate.berkopec@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE.txt
22
+ - README.md
23
+ - lib/threadpilot/goodjob.rb
24
+ - lib/threadpilot_placeholder/version.rb
25
+ homepage: https://github.com/speedshop/threadpilot-placeholder
26
+ licenses:
27
+ - MIT
28
+ metadata:
29
+ source_code_uri: https://github.com/speedshop/threadpilot-placeholder
30
+ bug_tracker_uri: https://github.com/speedshop/threadpilot-placeholder/issues
31
+ allowed_push_host: https://rubygems.org
32
+ rubygems_mfa_required: 'true'
33
+ post_install_message: |
34
+ This gem is a placeholder published to reserve the name on RubyGems.org.
35
+ You probably installed it by mistake.
36
+
37
+ There is not currently a real threadpilot-goodjob gem.
38
+
39
+ Available private Threadpilot gems are installed from:
40
+
41
+ source "https://gems.speedshop.co/private" do
42
+ gem "threadpilot"
43
+ gem "threadpilot-puma"
44
+ gem "threadpilot-sidekiq"
45
+ end
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 2.6.0
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubygems_version: 4.0.6
61
+ specification_version: 4
62
+ summary: Placeholder gem reserving the threadpilot-goodjob name on RubyGems.org
63
+ test_files: []