Class: AnnFlavorCore::DartDefines
- Inherits:
-
Struct
- Object
- Struct
- AnnFlavorCore::DartDefines
- Defined in:
- lib/vendor/ann_flavor_core/lib/ann_flavor_core/model.rb
Overview
── dart_defines ────────────────────────────────────────────────────────────
compile/run/deploy are reserved action-scope sub-keys (REQ-DDEF-00015).
common holds keys declared directly under dart_defines — they apply to every
action. Each action Hash is resolved as an addition on top of common, never a
replacement.
Instance Attribute Summary collapse
-
#common ⇒ Object
Returns the value of attribute common.
-
#compile ⇒ Object
Returns the value of attribute compile.
-
#deploy ⇒ Object
Returns the value of attribute deploy.
-
#run ⇒ Object
Returns the value of attribute run.
Class Method Summary collapse
Instance Attribute Details
#common ⇒ Object
Returns the value of attribute common
8 9 10 |
# File 'lib/vendor/ann_flavor_core/lib/ann_flavor_core/model.rb', line 8 def common @common end |
#compile ⇒ Object
Returns the value of attribute compile
8 9 10 |
# File 'lib/vendor/ann_flavor_core/lib/ann_flavor_core/model.rb', line 8 def compile @compile end |
#deploy ⇒ Object
Returns the value of attribute deploy
8 9 10 |
# File 'lib/vendor/ann_flavor_core/lib/ann_flavor_core/model.rb', line 8 def deploy @deploy end |
#run ⇒ Object
Returns the value of attribute run
8 9 10 |
# File 'lib/vendor/ann_flavor_core/lib/ann_flavor_core/model.rb', line 8 def run @run end |
Class Method Details
.defaults ⇒ Object
9 |
# File 'lib/vendor/ann_flavor_core/lib/ann_flavor_core/model.rb', line 9 def self.defaults = new(common: {}, compile: {}, run: {}, deploy: {}) |