Module: FlossFunding::Fingerprint
- Defined in:
- lib/floss_funding/fingerprint.rb
Overview
A tiny marker module mixed into libraries that include FlossFunding.
Exposes a single no-op method so specs (and external diagnostics) can
detect that a library has integrated FlossFunding by checking
respond_to?(:floss_funding_fingerprint)
.
Instance Method Summary collapse
-
#floss_funding_fingerprint ⇒ nil
Returns nil; presence of this method is the signal.
Instance Method Details
#floss_funding_fingerprint ⇒ nil
Note:
Test shim: used by specs; no internal usage as of 2025-08-13.
Returns nil; presence of this method is the signal.
12 13 14 |
# File 'lib/floss_funding/fingerprint.rb', line 12 def floss_funding_fingerprint nil end |