threadpilot-sidekiq 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: 118afd4274e13b773a7e6a63cbc5069fb4ed7ece2c472dda7d7c0489e6781a83
4
+ data.tar.gz: 56e75842cae7c0e22920543e3892720583c321cb093ff587f4419307212a7f89
5
+ SHA512:
6
+ metadata.gz: 4597279599b36bdcb1a403978f443eca30ba7059a182a23bed35efb8dc6cf3d116dc506823ab85c48f32fe5fc00229609ea9fac59eb96d96ed731c449a091a57
7
+ data.tar.gz: 37e715f7458526f4770a9249afb129d14ada703a49aa52362bc82bfb4d6ce93a483d66a7335f0663b84f05c22e0db4286e179376c13b088a5c3dcba4be006e16
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 Sidekiq
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,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: threadpilot-sidekiq
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-sidekiq name on RubyGems.org.
14
+ The real gem is distributed privately from https://gems.speedshop.co/private.
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/sidekiq.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
+ Put this in your Gemfile instead:
38
+
39
+ source "https://gems.speedshop.co/private" do
40
+ gem "threadpilot"
41
+ gem "threadpilot-sidekiq"
42
+ end
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 2.6.0
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ requirements: []
57
+ rubygems_version: 4.0.6
58
+ specification_version: 4
59
+ summary: Placeholder gem reserving the threadpilot-sidekiq name on RubyGems.org
60
+ test_files: []