Class: SparkleFormation::Resources::Heat
- Inherits:
-
SparkleFormation::Resources
- Object
- SparkleFormation::Resources
- SparkleFormation::Resources::Heat
- Extended by:
- Bogo::Memoization
- Defined in:
- lib/sparkle_formation/resources/heat.rb
Overview
Heat specific resources collection
Class Method Summary collapse
-
.included(_klass) ⇒ Object
Auto load data when included.
-
.load! ⇒ TrueClass
Load the builtin AWS resources.
Class Method Details
.included(_klass) ⇒ Object
Auto load data when included
29 30 31 |
# File 'lib/sparkle_formation/resources/heat.rb', line 29 def included(_klass) load! end |
.load! ⇒ TrueClass
Load the builtin AWS resources
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/sparkle_formation/resources/heat.rb', line 16 def load! memoize(:heat_resources, :global) do load( File.join( File.dirname(__FILE__), "heat_resources.json" ) ) true end end |