thomaspowell_powells_control_gem 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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +63 -0
- data/exe/thomaspowell_powells_control_gem +11 -0
- data/lib/thomaspowell_powells_control_gem/version.rb +5 -0
- data/lib/thomaspowell_powells_control_gem.rb +29 -0
- data/thomaspowell_powells_control_gem.gemspec +35 -0
- metadata +58 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 4fa04f6a8347402b1c9fa182e8cddaa3e88d8fb865cf2655bf9ff52832d5e45a
|
|
4
|
+
data.tar.gz: f2de1e812f96b6f3221be9aee5eae3e0444735cf871f534028b50bbc031ae5f7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c6255bc13424e8fac5cb00c07b88d64f8d527d47d3b4057b4ce0549e48fa523526614c241a5bb7d236030769774f0f3a28b531468928e7474aa640f76e1d3a97
|
|
7
|
+
data.tar.gz: b46f4ece8480965497422c64e9210b00a776a4bca124f7bddbcf700ef44f38af438e212d450bbd0e33898c4083a71082fac6d8a09927934d7ab0b86d17aa892d
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Thomas Powell
|
|
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,63 @@
|
|
|
1
|
+
# thomaspowell_powells_control_gem
|
|
2
|
+
|
|
3
|
+
> ⚠️ **This gem does nothing.** It is a control/baseline, not a tool. See below.
|
|
4
|
+
|
|
5
|
+
## What this actually is
|
|
6
|
+
|
|
7
|
+
`thomaspowell_powells_control_gem` has no real functionality. It was published
|
|
8
|
+
purely to answer a curiosity question: **how many downloads does a gem get by
|
|
9
|
+
default** -- with no README-driven traffic, no promotion, no advertised use
|
|
10
|
+
case, no real users -- just from bots, mirrors, CI runners, dependency
|
|
11
|
+
scanners, and whatever else pings RubyGems in the background?
|
|
12
|
+
|
|
13
|
+
This gem is that baseline measurement. It's a control group. If you're
|
|
14
|
+
comparing "how popular is my gem," this is the number you'd get with zero
|
|
15
|
+
effort, zero marketing, and zero legitimate reason for anyone to install it.
|
|
16
|
+
|
|
17
|
+
**You should not add this as a dependency.** There is nothing here for your
|
|
18
|
+
project to use.
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
If you really want to install it anyway (again: it does nothing useful):
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
gem install thomaspowell_powells_control_gem
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or in a Gemfile:
|
|
29
|
+
|
|
30
|
+
```ruby
|
|
31
|
+
gem "thomaspowell_powells_control_gem"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
Installing the gem provides one executable, which prints an explanation of
|
|
37
|
+
what this gem is (this same README, essentially) and exits:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
$ thomaspowell_powells_control_gem
|
|
41
|
+
thomaspowell_powells_control_gem is a control/baseline gem.
|
|
42
|
+
|
|
43
|
+
It has no functionality. It was published only to measure how many
|
|
44
|
+
downloads a gem accumulates by default -- with no README-driven
|
|
45
|
+
traffic, no promotion, and no real users -- as a baseline against
|
|
46
|
+
Thomas Powell's other gems.
|
|
47
|
+
|
|
48
|
+
You almost certainly do not want to depend on this in real code.
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
There is also a `ThomaspowellPowellsControlGem.explain` method if you require
|
|
52
|
+
the library directly, but again -- there's nothing else here.
|
|
53
|
+
|
|
54
|
+
## Why does this exist?
|
|
55
|
+
|
|
56
|
+
Download counts on RubyGems are often quoted as a signal of a gem's
|
|
57
|
+
popularity or usefulness. This gem exists to sanity-check that signal: it's
|
|
58
|
+
what "popularity" looks like for something nobody actually needs.
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
The gem is available as open source under the terms of the
|
|
63
|
+
[MIT License](https://opensource.org/licenses/MIT).
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "thomaspowell_powells_control_gem"
|
|
5
|
+
|
|
6
|
+
# NOTE: This executable is intentionally a no-op aside from printing the
|
|
7
|
+
# explanation below. This whole gem is a control/baseline: it exists only to
|
|
8
|
+
# see how many downloads a gem gets with zero marketing and zero real
|
|
9
|
+
# functionality. If you were expecting this command to *do* something,
|
|
10
|
+
# that's the point -- it doesn't, on purpose.
|
|
11
|
+
puts ThomaspowellPowellsControlGem.explain
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "thomaspowell_powells_control_gem/version"
|
|
4
|
+
|
|
5
|
+
# This gem does not do anything useful. It exists to answer one question:
|
|
6
|
+
# "if I publish a gem to RubyGems and never advertise it, how many downloads
|
|
7
|
+
# does it rack up anyway?" (from bots, mirrors, CI caches, dependency
|
|
8
|
+
# scanners, etc.) It is a control/baseline measurement, not a tool.
|
|
9
|
+
#
|
|
10
|
+
# See README.md for the full explanation.
|
|
11
|
+
module ThomaspowellPowellsControlGem
|
|
12
|
+
class Error < StandardError; end
|
|
13
|
+
|
|
14
|
+
# Returns the explanation printed by the `thomaspowell_powells_control_gem`
|
|
15
|
+
# executable. Exposed as a method mostly so this module does *something*
|
|
16
|
+
# when required.
|
|
17
|
+
def self.explain
|
|
18
|
+
<<~TEXT
|
|
19
|
+
thomaspowell_powells_control_gem is a control/baseline gem.
|
|
20
|
+
|
|
21
|
+
It has no functionality. It was published only to measure how many
|
|
22
|
+
downloads a gem accumulates by default -- with no README-driven
|
|
23
|
+
traffic, no promotion, and no real users -- as a baseline against
|
|
24
|
+
Thomas Powell's other gems.
|
|
25
|
+
|
|
26
|
+
You almost certainly do not want to depend on this in real code.
|
|
27
|
+
TEXT
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/thomaspowell_powells_control_gem/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "thomaspowell_powells_control_gem"
|
|
7
|
+
spec.version = ThomaspowellPowellsControlGem::VERSION
|
|
8
|
+
spec.authors = ["Thomas Powell"]
|
|
9
|
+
spec.email = ["twilliampowell@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "A do-nothing control gem, published only to measure default RubyGems download counts."
|
|
12
|
+
spec.description = <<~DESC
|
|
13
|
+
thomaspowell_powells_control_gem has no real functionality. It exists purely
|
|
14
|
+
as a control/baseline: to see how many downloads a gem accumulates by
|
|
15
|
+
default (bots, mirrors, CI, dependency scanners, etc.) with no README-driven
|
|
16
|
+
traffic and no promotion, as a comparison point for Thomas Powell's other,
|
|
17
|
+
real gems. Do not depend on this in production code.
|
|
18
|
+
DESC
|
|
19
|
+
spec.homepage = "https://rubygems.org/gems/thomaspowell_powells_control_gem"
|
|
20
|
+
spec.license = "MIT"
|
|
21
|
+
spec.required_ruby_version = ">= 3.0.0"
|
|
22
|
+
|
|
23
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
24
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
|
25
|
+
|
|
26
|
+
spec.files = Dir.chdir(__dir__) do
|
|
27
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
28
|
+
(File.expand_path(f) == __FILE__) ||
|
|
29
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
spec.bindir = "exe"
|
|
33
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
34
|
+
spec.require_paths = ["lib"]
|
|
35
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: thomaspowell_powells_control_gem
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Thomas Powell
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-08-27 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: |
|
|
14
|
+
thomaspowell_powells_control_gem has no real functionality. It exists purely
|
|
15
|
+
as a control/baseline: to see how many downloads a gem accumulates by
|
|
16
|
+
default (bots, mirrors, CI, dependency scanners, etc.) with no README-driven
|
|
17
|
+
traffic and no promotion, as a comparison point for Thomas Powell's other,
|
|
18
|
+
real gems. Do not depend on this in production code.
|
|
19
|
+
email:
|
|
20
|
+
- twilliampowell@gmail.com
|
|
21
|
+
executables:
|
|
22
|
+
- thomaspowell_powells_control_gem
|
|
23
|
+
extensions: []
|
|
24
|
+
extra_rdoc_files: []
|
|
25
|
+
files:
|
|
26
|
+
- LICENSE.txt
|
|
27
|
+
- README.md
|
|
28
|
+
- exe/thomaspowell_powells_control_gem
|
|
29
|
+
- lib/thomaspowell_powells_control_gem.rb
|
|
30
|
+
- lib/thomaspowell_powells_control_gem/version.rb
|
|
31
|
+
- thomaspowell_powells_control_gem.gemspec
|
|
32
|
+
homepage: https://rubygems.org/gems/thomaspowell_powells_control_gem
|
|
33
|
+
licenses:
|
|
34
|
+
- MIT
|
|
35
|
+
metadata:
|
|
36
|
+
homepage_uri: https://rubygems.org/gems/thomaspowell_powells_control_gem
|
|
37
|
+
source_code_uri: https://rubygems.org/gems/thomaspowell_powells_control_gem
|
|
38
|
+
post_install_message:
|
|
39
|
+
rdoc_options: []
|
|
40
|
+
require_paths:
|
|
41
|
+
- lib
|
|
42
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 3.0.0
|
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '0'
|
|
52
|
+
requirements: []
|
|
53
|
+
rubygems_version: 3.4.10
|
|
54
|
+
signing_key:
|
|
55
|
+
specification_version: 4
|
|
56
|
+
summary: A do-nothing control gem, published only to measure default RubyGems download
|
|
57
|
+
counts.
|
|
58
|
+
test_files: []
|