Module: Smplkit::Platform::EnvironmentClassification

Defined in:
lib/smplkit/platform/types.rb

Overview

Whether an environment participates in the canonical ordering.

STANDARD environments are the customer’s deploy targets — production, staging, development, etc. They participate in account.settings.environment_order and appear in the standard Console environment columns.

AD_HOC environments are transient targets (preview branches, individual developer sandboxes) that should not appear in the standard ordering.

Constant Summary collapse

AD_HOC =
"AD_HOC"
STANDARD =
"STANDARD"
ALL =
[AD_HOC, STANDARD].freeze