Class: Linzer::Signature::Profile::Example
- Defined in:
- lib/linzer/signature/profile/example.rb
Overview
Example no-op signing profile.
This profile exists solely for documentation and testing purposes. It does not modify the signing context in any way.
It demonstrates the expected structure of a signing profile:
This profile is safe to use but has no effect on signature output.
Instance Method Summary collapse
-
#apply(ctx) ⇒ void
Applies this profile to the signing context.
-
#initialize(foo:, bar:) ⇒ Example
constructor
Creates a new example profile instance.
Constructor Details
#initialize(foo:, bar:) ⇒ Example
Creates a new example profile instance.
22 23 24 25 |
# File 'lib/linzer/signature/profile/example.rb', line 22 def initialize(foo:, bar:) @foo = foo @bar = end |
Instance Method Details
#apply(ctx) ⇒ void
This method returns an undefined value.
Applies this profile to the signing context.
This implementation intentionally performs no modifications.
33 34 35 |
# File 'lib/linzer/signature/profile/example.rb', line 33 def apply(ctx) # no-op end |