Module: Primer::Status::Dsl
Overview
DSL to allow components to register their status.
Example:
class MyComponent < ViewComponent::Base
include Primer::Status::Dsl
status :beta
end
Defined Under Namespace
Classes: UnknownStatusError
Constant Summary collapse
- STATUSES =
{ alpha: :alpha, beta: :beta, stable: :stable, deprecated: :deprecated, experimental: :experimental, open_project: :open_project }.freeze