threadpilot-puma 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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +60 -0
- data/lib/threadpilot/puma.rb +6 -0
- data/lib/threadpilot_placeholder/version.rb +5 -0
- metadata +60 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 738d9f4a5e7c62d09d497f7b6b1d83ff6591226196ab58c58bcc6204059295fa
|
|
4
|
+
data.tar.gz: 5b21da84e7816d638d5bda58bd1b62cad4a501ad1ed7ea82a52a4cf586ae4cbb
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6730e21f51493bf98e45ae47b5139c7a6cacc57f372907ac2d7fb588e025f59ad28d092b825a91f6dd62ba91ec23e4a779985df1f8bc19640d645685860917b6
|
|
7
|
+
data.tar.gz: b8631bd66a15cc6ae4893c618b2479c529c3f3871ac743384221354de38b9bf8b76738c0a67497a09ce6b4582f2272ffd02d3de81fcebbbf174a5064eeb138bc
|
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
|
+
```
|
metadata
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: threadpilot-puma
|
|
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-puma 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/puma.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-puma"
|
|
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-puma name on RubyGems.org
|
|
60
|
+
test_files: []
|